How to Recursively copy a directory in Windows Command prompt
xcopy is useful program that is included with Windows. Some of the things it can do include: copy directories recursively, copy just the folder structure, copy files changed on or after a given date, exclude files, only copy files that already exist in the destination, overwrite read only files, etc.
Here's an example of copying files recursively:
xcopy /E c:\source c:\dest
1 Comments:
unix equivalaent:
cp -r source dest
By
anki, at Thursday, September 29, 2005 7:20:00 PM
Post a Comment
<< Home