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
>