Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有文件abc.txt,我需要检查该文件是否存在于假设 c:\test\abc.txt位置
abc.txt
c:\test\abc.txt
如果为真,那么我需要打印一些消息,否则我需要执行一些操作。
最好是使用 ant<available ../>填充属性,然后使用ant-contrib <if>任务或创建单独的目标,这些目标根据属性值运行。
<available ../>
<if>
检查此答案以获取详细信息:Ant task to run an Ant target only if a file exists?