Hi, Is there any problem with the following target. It doesn't seems to work for the files whose names end with ~. For other files it works. I tried escaping it with backslash but no luck
<target name="rmt" description="Clean all *~ files.">
<delete>
<fileset dir=".">
<include name="**/*.java~"/>
</fileset>
</delete>
</target>
Haneef
