A Microsoft platform for building and publishing apps for Windows devices.
Hi,
You don’t need to start the full 600 GB transfer again. You can resume the remaining files safely using one of these methods:
1. Use File Explorer
Just start copying the same source folder to the external drive again.
When Windows detects existing files, it will show a prompt:
“Replace the files in the destination / Skip these files / Let me decide for each file.”
Choose “Skip these files” → Windows will only copy the files that are missing (your remaining ~10%).
2. Use Robocopy (recommended for large transfers)
(Robocopy | Microsoft Learn)[https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy]
If you want a more reliable, resumable transfer:
- Open Command Prompt.
- Run this command:
robocopy "C:\Path\To\SourceFolder" "E:\DestinationFolder" /E /Z /R:1 /W:1
What the switches mean:
-
/E– copy all subfolders -
/Z– resume mode (can continue if interrupted) -
/R:1– retry once if a file is locked -
/W:1– wait 1 second between retries
Robocopy will only copy the files not already copied, and it can automatically resume if interrupted again.
Hope this helps.