RE: Deleting directories

2001-02-26 Thread Arvid . Amundsen
From my build.xml: target name="clean" unless="fast" !-- Delete the ${build} directory trees -- delete dir="${build}" / /target note the '/' at the end of delete dir.. tag. It seems that the are missing from your previous atempts... You might also try to remove the last '/' at

RE: Deleting directories

2001-02-13 Thread Brett Ramdeen
Title: RE: Deleting directories delete fileset dir=**/CVS/** / /delete The 'dir' attribute should specify the base directory that you want to delete. It should not contain any patterns. Change your delete task to this: delete fileset dir=whatever_your_base_dir_is includes=**/CVS

RE: Deleting directories

2001-02-13 Thread Jeff Davies
. - Jeff -Original Message- From: Glenn McAllister [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 10:52 AM To: [EMAIL PROTECTED] Subject: Re: Deleting directories Brett Ramdeen wrote: Hehe, this one will work for sure: target name="clean" delete dir=&q

Re: Deleting directories

2001-02-13 Thread Rick Szeto
te the CVS directories also? BTW - Thanks for the great response on this question! I do learn alot from this list. - Jeff -Original Message- From: Glenn McAllister [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 10:52 AM To: [EMAIL PROTECTED] Subject: Re: Deleting directori

RE: Deleting directories

2001-02-13 Thread Jeff Davies
question I did learn more about filesets, and I'm pretty happy about that. Thanks to everyone that commented on my question! - Jeff -Original Message- From: Rick Szeto [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 11:32 AM To: [EMAIL PROTECTED] Subject: Re: Deleting directori