I have used copydir to copy a directory tree but it is deprecated. My directory contains some sub-directories, and some of those contain files and others contain more sub-directories.
How can I copy the entire tree?
|
believe that will do what you want... |
|||
|
Copy contents including the directory itself.
|
|||||
|
|
You should only have to specify the directory (sans the includes property):
See the manual for more details and examples. |
|||||
|
|
From the example here, you can write a simple Ant file using copy task.
This should copy everything inside |
|||||
|
|
A fine point: ant will only copy the sub-directories if the source files are newer than the destination files. [1] In my case, the sub-dirs were not being copied (I am using verbose="true"), since there were no changes and they were already in the destination. You can use "overwrite" to force it, or touch some of the files in your source sub-dirs. |
|||
|
|
|
Copy contents including the directory itself.
|
|||
|
|