18.4k views
1 vote
Use the Internet to research Robocopy switches and then construct a command line that will use Robocopy to copy files in restart mode from a source to a destination mirroring the folder structure and using FAT file times. The command should retry the copy in case of a failed attempt.

User Belacqua
by
5.2k points

1 Answer

3 votes

Answer:

robocopy c:/source c:/destination /e /Z /FFT /R:n

here,

source : source folder name,

destination: destination folder name,

/e : command to copy all filesand folders from source to destination,

/Z : command to copy files in restart mode,

/FFT : command to use FAT file times,

/R:n : command to retry the copy in case of a failed attempt, by default n is 1 million times.

User Rishabh Singhal
by
4.3k points