gpt4 book ai didi

ant - 如何使用 Ant 解压缩和复制特定文件

转载 作者:行者123 更新时间:2023-12-01 10:47:51 25 4
gpt4 key购买 nike

我有 zip 文件“A.zip”。它包含一个文件夹“B”。在这个文件夹中,我有一个简单的“a.sql”文件。我需要将其复制到目标文件夹“Test”。我在下面使用了代码,但仍然无法正常工作。请告诉我该怎么做。

<target name="unzip.ubview" description="Unzips the zipped dump file from latest build">
<echo message="Extracting zip file" />
<unzip src="${IMP_LOC}/A.zip" dest="E:/Test" overwrite="true">
<patternset>
<include name="a*.sql"/>
</patternset>
<mapper>
<globmapper from="B/*" to="*"/>
</mapper>
</unzip>
</target>

最佳答案

怎么样

<target name="unzip.ubview" description="Unzips the zipped dump file from latest build">
<echo message="Extracting zip file" />
<unzip src="${IMP_LOC}/A.zip" dest="E:/Test" overwrite="true">
<patternset>
<include name="B/a*.sql"/>
</patternset>
<mapper>
<globmapper from="B/*" to="*"/>
</mapper>
</unzip>
</target>

关于ant - 如何使用 Ant 解压缩和复制特定文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23757373/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com