Windows – Cannot copy files from external hard drive to desktop hard drive in Window 7

external hard drivehard drivewindows

I'm trying to copy some old files from one of my external hard-drives to the hard drive of my desktop PC. Some files can not be copied but giving the error like 'Cannot read from source file or disk'. Those files are videos files (.DAT, .VOB, .MPG) and I watched them all the way through with no issues so the files aren't corrupted.

I'm running Windows 7, with admin permissions. Could any one let me know the reason and a solution?

Best Answer

This may be better treated as a comment, but too much detail for a comment.

A suggestion is to use Robocopy

Open Notepad and type the following, editing the source and destination path with your source and destination (please note)

robocopy "sourceFolder" "destinationFolder"

if you want to copy all the subfolders then use the /E like:

robocopy "sourceFolder" "destinationFolder" /E

Save the file as copy.bat and then run the script (double click it to run).

Let me know if you get the issue still.

Related Question