Title: RE: Let's try this again

Actually I am working with the move task.  I thought it was the delete task, but it turned out to be the move task that follows the delete task.  I fixed it by including *.zip instead of **/*.zip.

Patrick O'Hara
262-408-3849
[EMAIL PROTECTED]




-----Original Message-----
From: Stefan Bodewig [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 25, 2001 5:19 AM
To: [EMAIL PROTECTED]
Subject: Re: Let's try this again


Patrick O'Hara <[EMAIL PROTECTED]> wrote:

> I want a task to delete all files in a subdirectory that have a bak
> extension.

OK, use includes="**/*.bak" on your fileset.

> The directory may or may not have files in it.  I find that the
> delete task will delete the directory if there are no files in it.

If your don't want this, set includeemptydirs to false, so it should
be

<delete includeemptydirs="false">
  <fileset dir="your-top-dir-here" includes="**/*.bak" />
</delete>

Does this do what you want?

Stefan

Reply via email to