I am using Ant to build a fileset. I only want to include files in the file set that have been modified after a specific date. (See below)
Ideally I would like the below datetime value to be some sort of property that is equal to the create date of the build file. E.g. I only want files included in the fileset that where modified after the build file was created I cant use a static string because this build file will be checked out from subversion by multiple developers.
<fileset dir="some-files">
<date datetime="07/12/2010 12:00 AM" when="after"/>
</fileset>