RE: Create a file that contains files in directory

2006-04-21 Thread Guttula, Mohan
The following IVAN's suggestion resolved the issue: ${line.seprator} -Original Message- From: Guttula, Mohan Sent: Friday, April 21, 2006 3:16 PM To: Ant Users List Cc: [EMAIL PROTECTED] Subject: RE: Create a file that contains files in directory --- Snippet

RE: Create a file that contains files in directory

2006-04-21 Thread Guttula, Mohan
mp1/temp1.ind @temp4/temp4.ind @temp2/temp2.trg @temp5/temp5.trg Thanks, Mohan -Original Message- From: Ivan "Rambius" Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 9:11 PM To: Ant Users List Subject: RE: Create a file that contains files in directory

RE: Create a file that contains files in directory

2006-04-19 Thread Ivan \"Rambius\" Ivanov
Hello, --- "Guttula, Mohan" <[EMAIL PROTECTED]> wrote: > The issue was with relative path in the base > directory. i.e., > > > Issue is resolved by using IVAN suggestion which is > as follows: > - > > - Defining location of files and dirs with location attribute comes vary handy when

RE: Create a file that contains files in directory

2006-04-19 Thread Guttula, Mohan
from="${master_base}${file.separator}*" to="*"/> > > ${all.files} > > > > > > Regards, > Mohan > > -Original Message- > From: Guttula, Mohan > Sent: Wednesday, April 19, 2006 3:35 PM >

RE: Create a file that contains files in directory

2006-04-19 Thread Ivan \"Rambius\" Ivanov
to="*"/> > > ${all.files} > > > > > > Regards, > Mohan > > -Original Message- > From: Guttula, Mohan > Sent: Wednesday, April 19, 2006 3:35 PM > To: Ant Users List > Subject: RE: Create a fi

RE: Create a file that contains files in directory

2006-04-19 Thread Guttula, Mohan
build.xml ${all.files} Regards, Mohan -Original Message- From: Guttula, Mohan Sent: Wednesday, April 19, 2006 3:35 PM To: Ant Users List Subject: RE: Create a file that contains files in directory Hello, didn't resolve the abso

RE: Create a file that contains files in directory

2006-04-19 Thread Guttula, Mohan
Hello, didn't resolve the absolute path issue? Do I need to use some other mapper? Regards, Mohan -Original Message- From: Ivan "Rambius" Ivanov [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 4:58 PM To: Ant Users List Subject: Re: Create a file that co

Re: Create a file that contains files in directory

2006-04-17 Thread Ivan \"Rambius\" Ivanov
Hello, Here is a sample script that does this: ${all.files} Note that allfiles.txt will contain the absolute locations of the files. If you need relative ones you may want to use mappers: Regards Ivan --- "Guttula, Mohan" <[EMAIL PROTECTED]> wr

Re: Create a file that contains files in directory

2006-04-17 Thread Matt Benson
and ? -Matt --- "Guttula, Mohan" <[EMAIL PROTECTED]> wrote: > Hello All, > > > > I need to generate a file that contains list of > files from a directory > (that will contain subdirectories). > > Something similar to copying the output of "ls" or > "dir" to a file. > > > > For example