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