robocopy.exe question

  • Thread starter Thread starter zerbie45
  • Start date Start date
Z

zerbie45

Hello guys,

I copied a folder structure with robocopy, using the syntax robocopy
source destination /MIR /SEC but certain files failed to copy. How can
I run robocopy again to copy the skipped files only ?

Thanks in advance,
zz
 
Hello guys,

I copied a folder structure with robocopy, using the syntax robocopy
source destination /MIR /SEC but certain files failed to copy. How can
I run robocopy again to copy the skipped files only ?

Thanks in advance,
zz

I don't know the robocopy syntax by heart but you could
certainly do it with xcopy:

xcopy /d /s /e /y /c /h /r /o /k "Source Folder" "Destination Folder\"
 
I don't know the robocopy syntax by heart but you could
certainly do it with xcopy:

xcopy /d /s /e /y /c /h /r /o /k "Source Folder" "Destination Folder\"

Hello Pegasus,

thank you for your help, but I do need to use robocopy....

Regards,
zz
 
Hello Pegasus,

thank you for your help, but I do need to use robocopy....

Regards,
zz

That's fine. Just study the robocopy help file in detail - I'm sure
your answer is right there.
 
Back
Top