> 1. If lastrun.txt exists, get the modification time into a property. > 2. Extract the documents based on the property if it exists. If property > does not exist, just get everything. > 3. Touch the file lastrun.txt > > I don't know how to accomplish step 1. I could write a wrapper script to > get the value and pass it into Ant, but I would prefer to do this within > Ant.
In your shoes, I'd write a little <script>, and access directly java.io.File#lastModified. All you need is a script engine, like rhino.jar, in ANT_HOME/lib or in CLASSPATH. See at the dependencies section of the manual for the <script> task. --DD --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
