Ant:解压缩多个文件



如何使用Ant解压缩多个文件?我正在使用:

<unzip dest="./out">
    <patternset>
            <include name="**/*.zip"/>
    </patternset>
    <fileset dir="./in">
        <include name="**/*.zip"/>
    </fileset>
</unzip>

从输出中看,ANT似乎正确地找到了我的文件,但没有提取任何内容:

[unzip] Expanding: c:tempintest1.zip into c:tempout
[unzip] Expanding: c:tempintest2.zip into c:tempout

构建成功总时间:0秒

我不明白我做错了什么。

来自文档

PatternSet用于选择要从存档中提取的文件。如果未使用图案集,则提取所有文件。

因此,我的猜测是,您的zip文件不包含任何zip文件,因此不会提取任何内容,因为您告诉Ant只从zip文件中提取zip文件。

相关内容

  • 没有找到相关文章

最新更新