Related:
- Backup
- Xbox backup creator - Download - Backup and recovery
- Wii backup manager - Download - Backup and recovery
- Itunes backup location - Guide
- Recover deleted whatsapp messages without backup - Guide
- Backup mac mail - Guide
Sep 7, 2019 at 05:46 PM
Updated on Sep 7, 2019 at 07:18 PM
Or, you can use ROBOCOPY from a CMD prompt with admin privileges. The syntax for ROBOCOPY is as follows:
robocopy <Source> <Destination> [<File>[ ...]] [<Options>]
So, lets say your USB Drive when plugged in, turns into [F] drive.
You want to copy your Pictures folder. The path to your picture folder is [C:\Users\User\Pictures]
Plug your drive in. Verify it is F. Open a command prompt with admin privileges, and type in:
ROBOCOPY C:\Users\User\Pictures\ F:\ *.* /s /z /mov
Explanation:
/s = Copies subdirectories. Note that this option excludes empty directories.
/z = Copies files in restartable mode. Restartable is the key here. So if it crashes, the disk is set as recoverable, and you should be able to issue the same command again, and it will finish the crashed file transfer!
/move = Moves files, and deletes them from the source after they are copied. Eliminating the need to re-index the files upon crashes, and determine what has been moved, and what hasn't.
You can also do something like:
SET Source=C:\Users\User\Pictures\
SET Dest=F:\
Set SourceFiles=*.*
ROBOCOPY %Source% %Dest% %SourceFiles% /s /z /mov
Open a notepad, copy and paste the above code into it. Save it as, All file types *.* and name it COPYPictures.bat
Now, open up the folder location where you saved the above file. Now open an elevated command prompt. Drag the BAT file into the command window and hit enter.
Let us know if you have any questions concerning, THERE are plenty of PRO's around here that will answer any questions you may have. Any of our pros can help out with this!
Am I wrong, group? We can do more than just Social Media, and write reviews about outdated software, Right?
Have FUN!
Sep 8, 2019 at 09:48 AM
Thanks
Sep 8, 2019 at 02:45 PM
Sep 13, 2019 at 03:35 PM
Where should I go from here?
Thx, Clyde