Re: [NAnt-users] Does a file matching a pattern exist...

2009-07-24 Thread Bob Archer
Thanks... I ended up doing this:

Re: [NAnt-users] Does a file matching a pattern exist...

2009-07-24 Thread Bill Martin
You could use a fileset and then use the fileset::has-files(http://nantcontrib.sourceforge.net/release/latest/help/fu nctions/fileset.has-files.html ) function in NAntContrib. HTH, Bill _ From: Bob Archer [mailto:bob.arc...@amsi.com] Sent: 24 July 2009 17:20 To: nant-users@lists.

[NAnt-users] Does a file matching a pattern exist...

2009-07-24 Thread Bob Archer
Hi All, What is the easiest was to check if a file exists if I don't have the file name. I have the pattern that the file will match. The only think I can think to do is to use a foreach with the pattern and put the file name into a property. Is there an easier way that is cleaner? Thanks, BO