It should be:

<delete failonerror="false" includeEmptyDirs="true">
 <fileset dir="${basedir}" includes="test*/"/>
</delete>

- Alexey.

[EMAIL PROTECTED] wrote:
I'm probably missing something obvious, but I've been unable to figure
out how to delete directories using a wildcard.

So instead of this (test1/2/3 are directories):

        <delete failonerror="false" includeEmptyDirs="true">
            <fileset dir="${basedir}/test1"/>
            <fileset dir="${basedir}/test2"/>
            <fileset dir="${basedir}/test3"/>
        </delete>

I want to do this (which currently does nothing by design):

        <delete failonerror="false" includeEmptyDirs="true">
            <fileset dir="${basedir}/test*"/>
        </delete>

So how can I implement something like the above?

-Tom


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to