如何从 nant 脚本执行 7zip 命令?
我需要从 nant 脚本执行 7zip 命令。我怎样才能做到这一点?
我已经尝试过这样的方法,但它不起作用
<exec program="7z.exe" basedir="${sevenzipinstalldir}" commandline="7z a D:\NantTest\Experiment\NewLab\7ziptest.zip -pmypassword D:\NantTest\Experiment\NewLab\"
I need to execute 7zip commands from nant script. How can I do that?
I have tried it like this, but it is not working
<exec program="7z.exe" basedir="${sevenzipinstalldir}" commandline="7z a D:\NantTest\Experiment\NewLab\7ziptest.zip -pmypassword D:\NantTest\Experiment\NewLab\"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(不要在
命令行
中重复可执行文件名称。)(Don't repeat the executable name in
commandline
.)