ANT等待文件创建

时间:2010-06-09 09:13:37

标签: java ant build wait

是否可以配置ANT暂停构建过程,直到创建文件(具有相对超时)?

2 个答案:

答案 0 :(得分:17)

<waitfor maxwait="30" maxwaitunit="second">
    <available file="myfile"/>
</waitfor>

请参阅http://ant.apache.org/manual/Tasks/waitfor.html

答案 1 :(得分:1)

使用waitfor任务。