I want to gather all .map
files from Myproj directory also from it's sub-directories, then create a L.zip
file.
Here is my code.
<target name="buildLFiles" >
<zip destfile="../../bin/L.zip" update="true" >
<zipfileset casesensitive="no" dir="../../../Myproj" includes= "****/*.MAP" />
</zip>
</target>
Problem here is, I am getting all .map
files but it is getting created in file hierarchy wise.
Example:
This is original file structure:
MyProj
|- a
|- b
| - x1.MAP
Current Output:
L
|- a
|- b
| - x1.MAP
Required output:
L
|- x1.MAP