如何使用commnad行参数压缩文件夹的内容?
如何使用命令行参数压缩文件夹的内容。 我不喜欢使用第 3 方批处理文件。
我有一个名为“folder1”的文件夹,其中包含文件夹 1,2,3,... 我想将内容压缩到folder1.zip 文件中。 如果我压缩folder1,则zip文件包含来自folder1的内容。 即,解压后的 zip 文件将包含folder1/folder1/(文件夹的内容) 我只需要获取 zip 文件中的folder1 的内容。 即,解压后的 zip 文件应包含folder1/(contents)。 如果我能以蚂蚁目标的形式提供解决方案,我会很高兴。
等待回复。
提前致谢。 萨钦.
How can i zip the contents of a folder using command line argument.
I dont prefer to use 3rd party batch file.
I have a folder named "folder1" conmprising of folders 1,2,3,...
I want to zip the contents into folder1.zip file.
If i zip the folder1 , the zip file contains from folder1 .
i.e, the zip file when extracted will have folder1/folder1/(contents of the folder)
I just need to get the contents of the folder1 in the zip file.
i.e, the zip file when extracted should have folder1/(contents).
i would be happy if i can the solution in form of an ant target.
Wating for reply .
Thanks in advance.
Sachin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不简单地使用 ant
任务 为此:这会将
folder1/folder[1-3]
目录的内容压缩到example.zip< 中的目录
folder1
中/代码> 文件。编辑:更新以反映问题的更改。
Why don't you simply use the ant
<zip>
task for that:This will zip the contents of the
folder1/folder[1-3]
directories into the directoryfolder1
in theexample.zip
file.EDIT: Updated to reflect the changes to the question.
使用zip ant 任务怎么样?
How about using the zip ant task?
您还可以使用
exec
任务。You can also use
exec
task.