Hi there,
I am doing some ANT scripts just now and I am looking to copy a directory from one location to the other. However, after looking at "copy" and "copyDir" (which is deprecated) it seems that ANT (by default) only copies the content of one location to another, not the actual directory (and everything in it).
So, as an example I have the following:
./Foo/test.txt
And I apply the following piece of ANT :
<copy todir="./build">
<fileset dir="./Foo"/>
</copy>
The result looks like this:
./build/test.txt
Whereas I would like it to be:
./build/Foo/test.txt
Hope that makes sense.
Thanks,
Stuart