Robocopy, or plain old xcopy. Personally, I use xcopy:
C:> xcopy <sourcedir> <targetdir> /e /i
targetdir doesn't need to exist yet, xcopy will create it. /e tells it to
create empty directories if it finds any, and also to do all subdirectories.
And /i says to be intelligent about the targetdir being a file or a
directory.
xcopy /?
will give you all the possible options.
--
Charlie.
http://msmvps.com/blogs/xperts64
http://mvp.support.microsoft.com/profile/charlie.russel
"Paul Koukos" <> wrote in message
news:94ABBCB3-B1C2-4A9D-AD74-...
> Is there a way thru CMD to copy/move let's say a directory with all the
> sub
> directories and all the files to another drive?