如何解压缩特定文件夹?
如何使用 Ant 解压缩特定文件夹?
具体来说,我下载了 apache-tomcat-6.0.29.zip,其中包含文件夹“apache-tomcat-6.0.29”。我希望 Ant 解压“apache-tomcat-6.0.29”下的所有内容,但不包括层次结构顶部的“apache-tomcat-6.0.29”。
我尝试了很多东西,但似乎无法让它发挥作用。
这是我的最新尝试:
<unzip dest="${release.dir}/image/tomcat" src="${tomcat.zip}">
<patternset>
<include name="apache-tomcat-6.0.29/*"/>
</patternset>
</unzip>
有什么想法吗?
How can I unzip a specific folder with Ant?
Specifically, I have downloaded apache-tomcat-6.0.29.zip which contains the folder "apache-tomcat-6.0.29". I want Ant to unzip everything under "apache-tomcat-6.0.29" but not include "apache-tomcat-6.0.29" in the top of hierarchy.
I've tried a bunch of things, but I can't seem to get it to work.
Here's my latest attempt:
<unzip dest="${release.dir}/image/tomcat" src="${tomcat.zip}">
<patternset>
<include name="apache-tomcat-6.0.29/*"/>
</patternset>
</unzip>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在解压缩任务中使用 mapper 来更改写入的路径。
You can use a mapper within the unzip task to change the paths written.
只要 tomcat 存档中有一个目录,以下操作就有效。
The following works as long that there is a single directory in the tomcat archive.