Robocopy - enable data validation?

1

I am copying a file using robocopy, however I have noticed that the destination file is always corrupted, is there an option with robocopy I can use to ensure that each chunk is validated during the transfer? using 7zip, I can see that the checksums do not match after transfer has completed.

Neil P

Posted 2016-07-11T10:09:08.520

Reputation: 258

Answers

1

Robocopy does not contain this feature.

Instead of robocopy you could either use rsync, teracopy etc. or you could validate the files in a second step after the backup is finished and restart the job if the files are not valid.

If this backup is just running through your internal network, independent of your decision, you should try to find the source of the data corruption. Possibly there is a corrupt harddrive, something is wrong on the network etc..

hub

Posted 2016-07-11T10:09:08.520

Reputation: 461

0

That feature is not supported. For larger files with included CRC-check use something like TeraCopy.

Overmind

Posted 2016-07-11T10:09:08.520

Reputation: 8 562