AW: Need to expand *.txt in java task

2005-10-30 Thread Jan.Materne
Maybe http://marc.theaimsgroup.com/?l=ant-user&m=110067648929614&w=2 would interest you, Bob. Jan >-Ursprüngliche Nachricht- >Von: Dale Anson [mailto:[EMAIL PROTECTED] >Gesendet: Samstag, 29. Oktober 2005 00:13 >An: Ant Users List >Betreff: Re: Need to expand *.

Re: *****spam***** Re: Need to expand *.txt in java task

2005-10-28 Thread Geoffrey Mitchell
The following works under ant 1.6.5: I inadvertantly omitted the ... in my initial example. It should be mentioned that if you have spaces in the paths to your working directory, will not work as expected, as it will break arguments on

Re: Need to expand *.txt in java task

2005-10-28 Thread Dale Anson
I'd suggest you start here: http://www.catb.org/~esr/faqs/smart-questions.html That might help you get a better response. Bob Noonan wrote: the task given in the rely generates a: pathconvert does not support nested fileset ditto the following example taken from ant.apache.org/manual/

Re: Need to expand *.txt in java task

2005-10-28 Thread Bob Noonan
the task given in the rely generates a: pathconvert does not support nested fileset ditto the following example taken from ant.apache.org/manual/using.html: generates: corona> ant -f filelist.xml Buildfile: filelist.xml alt: BUILD FAILED /h

Re: Need to expand *.txt in java task

2005-10-28 Thread Geoffrey Mitchell
You could use PathConvert to convert your fileset into a string with the list of files.  You will probably want to set pathsep=" " and use arg line="${fileslist}". So, you have:    I haven't tried it, but it should work. Hi, Please forgive my stupidity, but I have spe

Re: Need to expand *.txt in java task

2005-10-28 Thread Rhino
Rhino - Original Message - From: "Bob Noonan" <[EMAIL PROTECTED]> To: Sent: Friday, October 28, 2005 2:17 PM Subject: Need to expand *.txt in java task > Hi, > > Please forgive my stupidity, but I have spent hours on this ... > > Given the following Unix/

Need to expand *.txt in java task

2005-10-28 Thread Bob Noonan
Hi, Please forgive my stupidity, but I have spent hours on this ... Given the following Unix/Linux command line: java Test.Main -all *.txt I wrote the following ant task: Test.Main reports it cannot find file *.java. So I replaced the 2