in reply to Re: Re: Copying a directory recursively
in thread Copying a directory recursively

Note that by default DOS's xcopy does not copy recursively, you have to give a switch to do that, /E I think.

  • Comment on Re: Re: Re: Copying a directory recursively

Replies are listed 'Best First'.
Re^4: Copying a directory recursively
by ikegami (Patriarch) on Jul 25, 2005 at 17:08 UTC

    /s for recursive (s for sub directories).
    /e to copy empty subdirectories.
    /o might be of interest too. Use it to also copy file ownership and ACL information.