vote up 2 vote down star
1

I want to delete all directories and subdirectories under a root directory that are contain "tmp" in their names. This should include any .svn files too. My first guess is to use

<delete>
    <dirset dir="${root}">
          <include name="**/*tmp*" />
    </dirset>
</delete>

This does not seem to work as you can't nest a dirset in a delete tag.

Is this a correct approach, or should I be doing something else?

  • ant version == 1.6.5.
  • java version == 1.6.0_04
flag

55% accept rate

2 Answers

vote up 1 vote down

try:

<delete includeemptydirs="true">
    <fileset dir="${root}">
          <include name="**/*tmp*/*" />
    </fileset>
</delete>


ThankYou flicken !

link|flag
To delete directories, you'll need to add ncludeemptydirs="true", as outlined below. – flicken Oct 1 '08 at 17:18
vote up 4 vote down check

Here's the answer that worked for me:

<delete includeemptydirs="true">
    <fileset dir="${root}" defaultexcludes="false">
       <include name="**/*tmp*/**" />
    </fileset>
</delete>

I had an added complication I needed to remove .svn directories too. With defaultexcludes, .* files were being excluded, and so the empty directories weren't really empty, and so weren't getting removed.

The attribute includeemptydirs (thanks, flicken, XL-Plüschhase) enables the trailing ** wildcard to match the an empty string.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.