Hi,
I Apache Ant, there is a flag that allows copy to flatten the directory structure and copy only files that match. I.e. the source directory structure is ignored.
<copy todir=”bin” flatten=”true”> <fileset basedir=”.”> <includes name=”**/*.dll”/> </fileset> </copy>
Is there any way to do this with NAnt? It seems to copy the entire directory structure along with the files.
Thanks, Raghu |
- RE: [Nant-users] Copy with the flatten feature Raghu Murthy
- RE: [Nant-users] Copy with the flatten feature Jean Rajotte