Re: ftp question 1.5.4

2005-03-18 Thread Mike Starkie
Original Message- > From: Vadim Kazakov [mailto:[EMAIL PROTECTED] > Sent: March 16, 2005 2:18 PM > To: Ant Users List; Mike Starkie > Subject: RE: ftp question 1.5.4 > > You can use the > Attributes and then somehow parse the list.txt file in order to get each > file in tha

RE: ftp question 1.5.4

2005-03-16 Thread Vadim Kazakov
Didn't realize the listing was stored on the local computer. Then I guess my response doesn't really apply. -Original Message- From: Vadim Kazakov [mailto:[EMAIL PROTECTED] Sent: March 16, 2005 2:18 PM To: Ant Users List; Mike Starkie Subject: RE: ftp question 1.5.4 You c

RE: ftp question 1.5.4

2005-03-16 Thread Vadim Kazakov
You can use the Attributes and then somehow parse the list.txt file in order to get each file in that list. -Original Message- From: Mike Starkie [mailto:[EMAIL PROTECTED] Sent: March 16, 2005 2:08 PM To: user@ant.apache.org Subject: ftp question 1.5.4 I'm forced to use ant 1.5.4

Re: ftp question 1.5.4

2005-03-16 Thread Matt Benson
--- Mike Starkie <[EMAIL PROTECTED]> wrote: > This works fine but there's one glitch: I want to > download junit.jar > and it's on the ftp server under junit/junit.jar, i > place a line in my > dependencies file: "junit/junit.jar" and the task > downloads the file > to a local directory called "j

Re: ftp question 1.5.4

2005-03-16 Thread Mike Starkie
This works fine but there's one glitch: I want to download junit.jar and it's on the ftp server under junit/junit.jar, i place a line in my dependencies file: "junit/junit.jar" and the task downloads the file to a local directory called "junit/junit.jar". Everything is fine except I don't want t

Re: ftp question 1.5.4

2005-03-16 Thread Matt Benson
You should try using a nested fileset with the ftp task, and setting the includesfile attribute of your fileset to the file containing the list of names. -Matt --- Mike Starkie <[EMAIL PROTECTED]> wrote: > I'm forced to use ant 1.5.4 and I would like ant to > read a list of > filenames stored in

ftp question 1.5.4

2005-03-16 Thread Mike Starkie
I'm forced to use ant 1.5.4 and I would like ant to read a list of filenames stored in a file and do an ftp 'get' on each one of them. Is this possible using the ftp task? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona