1

Recently my HDD started failing and I replaced it. The first thing I did was save the really important data, so that part is already covered. I am now trying to copy the bulk of the rest for the sake of convenience (just using windows explorer for now). Some files have bad sectors and just fail to copy and that's fine by me - while it will take a few min, I can find them elsewhere. My real problem is that a lot of files have sectors that take repetitive tries to copy and end up successfully copying a 10mb file in several hours. While I am grateful for the hard work rescuing that file, it is ultimately not worth it. Is there some software that I can use to only copy the files that read on the first try (which I would estimate to be the majority)?

Bogdan
  • 13

4 Answers4

0

Generally speaking, if the sectors are bad, the copy will simply get stuck and not proceed.

It is not always possible to determine how damage might affect individual files.

If some sector damage is not too bad, it might get by some.

Even normal recovery agencies cannot recover badly damaged areas.

So get what you can, and that is about all you can do.

(I have tried this with a disk of my own and a local recovery agency and it was unsuccessful).

0

Use the utility Roadkil's Unstoppable Copier to copy the files to another disk.

See the Unstoppable Copier 5.2 UserGuide regarding the Settings Tab for setting the mode to "Fastest Data Recovery mode".

For more information see the article Copy Files from Damaged CD DVD with Unstoppable Copier.

harrymc
  • 498,455
0

Suggest making an image first with dd or similar. This will copy the good portions... Yes, and the bad. Yet if it is a head crash or similar NAND Flash issue, you may only get one attempt, so make it count. Then mount the image or transfer it to a healthy device. At that point, you can determine what is corrupt or not and make copies.

NOTE: For a single drive, a data recovery service may not be an outrageous cost; see this Best Data Recovery Services article.

0

You can use robocopy.
The below will copy from c:\ to x:\

robocopy c:\ x:\ /MIR /R:0 /W:0

/MIR = Mirror entire directory structure (equivalent of /E) /R:0 = 0 retries for read/write failures /W:0 = 0 seconds between retries

RomanK
  • 266
  • 1
  • 9