java - Copy the folder along with parent folder -
i have simple question, unable figure out way it. have folder called edsdk
, internally contains sub-folders. in ant wish copy files.
i.e.
edsdk
- headers
- dlls
i wish copy whole above (including edsdk). doing:
<fx:fileset dir="." type="data" includes="edsdk/**"/>
copies internal of edsdk
folder not edsdk folder itself. should do?
ps: above fx:fileset
similar fileset
doing:
<fx:fileset dir="." type="data" includes="edsdk/"/>
does trick.
Comments
Post a Comment