vote up 5 vote down star

Is there an ANT Task that would execute a block only if a given file exists? I have the problem that I have a generic ant script that should do some special processing but only if a specific configuration file is present.

flag

74% accept rate

1 Answer

vote up 12 vote down check

Available and Condition

Not tested:

<target name="check-abc">
    <available file="abc.txt" property="abc.present"/>
</target>

<target name="do-if-abc" depends="check-abc" if="abc.present">
    ...
</target>
link|flag
1  
Available is a non so obvious name for what it does. I got further confused by the fact that google shows people writing their own tags – Mario Ortegón Feb 6 at 19:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.