Hi,

I am new to ant.

I would like to know does anyone know how to delete all files that are under
a directory such as
c:\tomcat\common\class\?

Here is my undeploy code:
<target name="undeploy" description="undeploys everything from Tomcat">
        <delete dir="${env.TOMCAT_HOME}/webapps/ROOT/${appName}"/>
        <delete dir="${deployClassesDir}/${packageName}"/>
        <delete file="${deployClassesDir}/*.*"/>
</target>

I used this  <delete file="${deployClassesDir}/*.*"/> to try to delete all
the files that are under this directory but it did not work.

THanks!!!




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

Reply via email to