F5F Stay Refreshed Software Operating Systems Question about copying software?

Question about copying software?

Question about copying software?

M
mor3y
Junior Member
15
01-18-2025, 06:09 AM
#1
Hi,
My internal 3.5 hard disk, which holds data files like txt, xlsx, mp4, etc., is experiencing issues. The files are failing to copy, and I only want to move them to a new hard disk. I need a method to automatically skip the files that can't be copied, and I want to know which ones are problematic.

After the copying process, I should also have software that checks if the copied files match the originals in quality and size.

Please let me know what tools can help with this situation.
M
mor3y
01-18-2025, 06:09 AM #1

Hi,
My internal 3.5 hard disk, which holds data files like txt, xlsx, mp4, etc., is experiencing issues. The files are failing to copy, and I only want to move them to a new hard disk. I need a method to automatically skip the files that can't be copied, and I want to know which ones are problematic.

After the copying process, I should also have software that checks if the copied files match the originals in quality and size.

Please let me know what tools can help with this situation.

S
ShyCarrot
Member
83
01-18-2025, 02:27 PM
#2
That is just a single pending sector.
Copy/paste normally.
Or you can also use
robocopy
tool.
robocopy d:\sourcefolder e:\targetfolder /E /XO


/E
- means copy all (files, folders, subfolders and subfolder contents)
/XO
- means omit older files. You can relaunch same
robocopy
command and it will copy changed files only and skip already copied files.
You can get full command reference with
robocopy /?
S
ShyCarrot
01-18-2025, 02:27 PM #2

That is just a single pending sector.
Copy/paste normally.
Or you can also use
robocopy
tool.
robocopy d:\sourcefolder e:\targetfolder /E /XO


/E
- means copy all (files, folders, subfolders and subfolder contents)
/XO
- means omit older files. You can relaunch same
robocopy
command and it will copy changed files only and skip already copied files.
You can get full command reference with
robocopy /?

M
Michael0604
Junior Member
7
01-18-2025, 03:20 PM
#3
When using the Windows 10 copy and paste feature normally, how will the file transfer process behave for the affected area (single pending sector)? Is TeraCopy more effective than the built-in Windows copy and paste function? Robocopy appears difficult, making me anxious about using command-line instructions. Could you believe that performing a Macrium Reflect backup would work successfully? How can I use software to fix the disk? What should I stop using when the Raw Values reach a certain threshold?
M
Michael0604
01-18-2025, 03:20 PM #3

When using the Windows 10 copy and paste feature normally, how will the file transfer process behave for the affected area (single pending sector)? Is TeraCopy more effective than the built-in Windows copy and paste function? Robocopy appears difficult, making me anxious about using command-line instructions. Could you believe that performing a Macrium Reflect backup would work successfully? How can I use software to fix the disk? What should I stop using when the Raw Values reach a certain threshold?

O
onuryolo
Junior Member
2
01-20-2025, 04:08 AM
#4
Give it a shot. There might not even be any file in that sector. Windows will attempt to read the file several times. If it fails, you might encounter a CRC error. It's simple—test with a sample folder first to understand how it works. Your chance is uncertain, about half the time. You'll need to give it a try. Victoria software can help fix pending sectors. Use the scan with remap option. https://victoria.en.lo4d.com/windows Several thousands probably.
O
onuryolo
01-20-2025, 04:08 AM #4

Give it a shot. There might not even be any file in that sector. Windows will attempt to read the file several times. If it fails, you might encounter a CRC error. It's simple—test with a sample folder first to understand how it works. Your chance is uncertain, about half the time. You'll need to give it a try. Victoria software can help fix pending sectors. Use the scan with remap option. https://victoria.en.lo4d.com/windows Several thousands probably.

M
193
01-20-2025, 05:14 PM
#5
FreeFileSync is available, it will transfer all files and then only copy new or changed data on the drive later.
M
Minemanhpminer
01-20-2025, 05:14 PM #5

FreeFileSync is available, it will transfer all files and then only copy new or changed data on the drive later.

S
Sandreys
Junior Member
19
01-22-2025, 04:55 AM
#6
The alternative involves employing code that executes copy/paste functionalities while integrating error handling mechanisms.
A few IF/THEN/ELSE conditions within the chosen development environment would suffice.
When the copy/paste operation encounters an issue, the script informs the system of the appropriate action.
It is usually sufficient to simply log the error, reference the problematic file, and proceed to the next task.
Powershell offers a Copy-Item cmdlet that simplifies these tasks.
The complete script can be tailored to your preferences, offering flexibility and customization.
S
Sandreys
01-22-2025, 04:55 AM #6

The alternative involves employing code that executes copy/paste functionalities while integrating error handling mechanisms.
A few IF/THEN/ELSE conditions within the chosen development environment would suffice.
When the copy/paste operation encounters an issue, the script informs the system of the appropriate action.
It is usually sufficient to simply log the error, reference the problematic file, and proceed to the next task.
Powershell offers a Copy-Item cmdlet that simplifies these tasks.
The complete script can be tailored to your preferences, offering flexibility and customization.