At 08:14 14/12/00 -0000, Yusuf Goolamabbas wrote:
>Using Ant 1.2
>
>Hi, I am trying to write a target named "clean" which deletes all
>.class file in the specified directory. That directory contains .java
>files, .xml files and .txt files. I thought the following would do the
>trick
>
><fileset dir=".">
><exclude name="*" />
><include name="*.class" />
></fileset>
This will do it ...
<delete>
<fileset dir="${srcfile}" >
<include name="*.class" />
</fileset>
</delete>
>Is there a way to tell Ant to find the composite between excludes and
>includes and use the resultant fileset for the target
No unfortunately not.
Cheers,
Pete
*-----------------------------------------------------*
| "Faced with the choice between changing one's mind, |
| and proving that there is no need to do so - almost |
| everyone gets busy on the proof." |
| - John Kenneth Galbraith |
*-----------------------------------------------------*