Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Sounds like you want to do a recursive copy. And that's the solution that Omnipresent gave. More people may find this question if the word "recursive" appeared in the question. – Jason Apr 26 '12 at 18:28

6 Answers

up vote 41 down vote accepted
  <copy todir="${dest.dir}" >  
        <fileset dir="${src.dir}" includes="**"/>  
 </copy>

believe that will do what you want...

share|improve this answer
2  
apparently, the includes is not necessary when you want everything (see answer by user s1n) – Abel Aug 17 '10 at 7:13
4  
This copies the contents of {src.dir}, but not the actual directory – Casey Jan 26 at 0:42

Copy contents including the directory itself.

<copy todir="${dest.dir}" >  
    <fileset dir="${src.dir.parent}">  
        <include name="${src.dir}/**"/>
    </fileset>

share|improve this answer
3  
this should be the CORRECT answer. The other answer are for the question "How do you copy the contents of a directory using Ant". There is a subtle difference. – Casey Jan 26 at 0:41

You should only have to specify the directory (sans the includes property):

<copy todir="../new/dir">
    <fileset dir="src_dir"/>
</copy>

See the manual for more details and examples.

share|improve this answer
6  
@s1n This commands only copies all the contents of src_dir to ../new/dir and not the src_dir. How do we copy src_dir (directory) to another location? – Pipalayan Nayak Dec 3 '11 at 19:24

From the example here, you can write a simple Ant file using copy task.

<project name="MyProject" default="copy" basedir=".">
    <target name="copy">
        <copy todir="./new/dir">
           <fileset dir="src_dir"/>
        </copy>
    </target>
</project>

This should copy everything inside src_dir (excluding it) to new/dir.

share|improve this answer
5  
this is just copying the contents of the directory. not the contents including the directly. :( – ghostCoder Nov 21 '11 at 7:55

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.

share|improve this answer

Copy contents including the directory itself.

<copy todir="${dest.dir}" >  
  <fileset dir="${src.dir.parent}" includes="${src.dir}/**"/>
</copy>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.