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?

Re: COPY/MOVE by Mark

Mark
Sat May 10 10:17:04 PDT 2008

Robocopy:
http://technet2.microsoft.com/windowsserver2008/en/library/69baa34b-d4b3-40ec-bd2f-12d98f7802d51033.mspx?mfr=true

--
Was this helpful? Then click the Ratings button. Voting helps the web
interface.
http://www.microsoft.com/wn3/locales/help/help_en-us.htm#RateAPostAsAnswer
Mark L. Ferguson
.

"Paul Koukos" <PaulKoukos@discussions.microsoft.com> wrote in message
news:94ABBCB3-B1C2-4A9D-AD74-EB3AC0D938CD@microsoft.com...
> 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?


Re: COPY/MOVE by Charlie

Charlie
Sat May 10 13:08:13 PDT 2008

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" <PaulKoukos@discussions.microsoft.com> wrote in message
news:94ABBCB3-B1C2-4A9D-AD74-EB3AC0D938CD@microsoft.com...
> 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?


Re: COPY/MOVE by Huib

Huib
Sun May 11 00:50:21 PDT 2008

Hi,
Maybe i missing your point but: rightclick / selecting cut (not remove) /
going to the new place / rightclick and copy.
That action is placeing the files submaps and so on.
It should be done, this is something already for years in windows.
but maybe i missing your point?
Regards
Huib
"Paul Koukos" <PaulKoukos@discussions.microsoft.com> schreef in bericht
news:94ABBCB3-B1C2-4A9D-AD74-EB3AC0D938CD@microsoft.com...
> 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?