我需要编写一个ant任务来有选择地删除文件。
在目录中,我有以下罐子:
acme.jar ACME-201105251330.jar
我想删除acme.jar,因为acme - * .jar存在。
这是我尝试过的:
<target name="-check-use-file">
<available property="file.exists">
<filepath> <fileset dir=".">
<include name="./test-*.jar"/> </fileset>
</filepath>
</available>
</target>
<target name="use-file" depends="-check-use-file" if="file.exists">
<!-- do something requiring that file... -->
</target>
由于