>I tried with the wildcard that you provided and checked with
>verbose option.
>Extracting of files doesn't seem to happen for specified folder names.
This works for me:
<project>
<mkdir dir="_allImages_"/>
<unzip src="${ant.home}/lib/ant.jar" dest="_allImages_">
<patternset>
<include name="images/"/>
</patternset>
</unzip>
<mkdir dir="_selectedFiles_"/>
<unzip src="${ant.home}/lib/ant.jar" dest="_selectedFiles_">
<patternset>
<include name="**/ant_logo_large.gif"/>
<include name="**/LICENSE.txt"/>
</patternset>
</unzip>
</project>
Jan
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]