我正在使用
<resourceexists>
<file file="${file}"/>
</resourceexists>
但是在ant 1.8.2中出现如下错误:
upgrade.xml:44:问题:无法创建任务或键入resourceexists 原因:名称未定义。行动:检查拼写。 操作:检查是否已声明任何自定义任务/类型。 操作:检查是否已发生任何/声明。
可能是什么原因?
答案 0 :(得分:2)
因为<resourceexists/>
是<condition/>
嵌套任务。你应该这样使用:
<project name="resourcetest" default="test">
<target name="test">
<condition property="is.resource.exists" value="true" else="false">
<resourceexists>
<file file="C:\ac.txt"/>
</resourceexists>
</condition>
<echo>Does file C:\ac.txt exists? ${is.resource.exists}</echo>
</target>
</project>