help with DOS command please

  • Thread starter Thread starter Jack
  • Start date Start date
J

Jack

went into start/run

cmd.exe
am trying to copy one large dir from one drive to another drive

put in

copy F:\example\*.* G:\example\*.*



it only copied those files in the dir that were not in a subdir.

how to copy ALL the files in that dir to the other drive please?
 
how to copy ALL the files in that dir to the other drive please?

Use XCOPY with either the /E or /S options depending on your
requirement.

For future reference, simply enter

COPY /?
or
XCOPY /?

for a reminder of the available options.
 
Back
Top