Yeah, sorry about having the flag on the wrong element; I was working from
memory.
Look at the source in CVS. There wasn't an official "Patch", but I seem to
recall the fix was a single line of code changed. If you need more help
than that, it may be more than I can provide over email. Also, you may find
it easiest to compile your own version of Delete.java and overrided the
taskdef. Look in the FAQ on how to do this.
K.C.
> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 29, 2001 10:21 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Directory delete question
>
>
>
> I just noticed that the includeEmptyDirs should be on the
> <delete> and that
> deletes the lowest level directories, but not any of the
> intervening, which
> is
> probably the problem that you were talking about. Where
> would I find the
> fix
> to patch this?
>
> Eric
>
>
>
>
> [EMAIL PROTECTED] on 03/29/2001 08:15:53 AM
>
> Please respond to [EMAIL PROTECTED]
>
> To: [EMAIL PROTECTED]
> cc:
>
> Subject: RE: Directory delete question
>
>
>
> I tried this but I get a message saying that Class
> org.apache.tools.ant.types.FileSet doesn't support the
> "includeemptydirs" attribute. I deleted this and got all the files
> deleted, but none of the directories.
>
> Eric
>
>
>
>
> KC Baltz <[EMAIL PROTECTED]> on 03/29/2001 07:28:50 AM
>
> Please respond to [EMAIL PROTECTED]
>
> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> cc:
>
> Subject: RE: Directory delete question
>
>
> Ideally, the following should work in Ant 1.3
>
>
> <delete >
> <fileset dir="rootOfBuildDirs" includeEmptyDirs="yes" >
> <include name="build*/**" />
> </fileset>
> </delete>
>
> However, there was a bug with includeEmptyDirs when 1.3 was
> released that
> causes it to not remove directories if they have
> subdirectories, even if
> those subs are empty. It has been fixed since and you could
> patch your
> copy
> to work. But try they above, see if it fixes it for you.
>
> K.C.
>
> > -----Original Message-----
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, March 28, 2001 6:58 PM
> > To: [EMAIL PROTECTED]
> > Subject: Directory delete question
> >
> >
> > I've just downloaded Ant and have found it very useful for
> > keeping track of
> > different
> > builds, but I was wondering how to delete a number of
> > directories. I'm
> > building
> > buildyyyymmdd.hhmm directories and at some point later I want
> > to be able to
> > delete
> > them so I really want something like this
> > <target name="cleanall">
> > <delete dir="build*" />
> > </target>
> >
> > I looked at FileSets but that seems to only include files,
> > same with include.
> >
> > Thanks
> > Eric
> >
>
>
>
>
>
>
>
>
>
>
>
>