You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bu...@apache.org on 2003/05/22 21:44:17 UTC

DO NOT REPLY [Bug 20164] - File list generation needs to include date handling

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20164>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20164

File list generation needs to include date handling

levylambert@tiscali-dsl.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME



------- Additional Comments From levylambert@tiscali-dsl.de  2003-05-22 19:44 -------
most tasks having to do with files in ant are done based on filesets.
filesets may be defined with a selector in them.
One of these selectors is based on date.
http://ant.apache.org/manual/CoreTypes/selectors.html
this example is the kind of things you want to do :
<fileset dir="${jar.path}" includes="**/*.jar">
    <date datetime="01/01/2001 12:00 AM" when="before"/>
</fileset>
So I close this bug rep as works for me.