IT ENGLISH BOARD

Robocopy command syntax and examples

Software
Author
author
Date
2019-08-30 19:17
Views
2806

Robocopy command syntax and examples





Robocopy command is used on Windows to copy files and directories from one location to another. This CMD command also prints a detailed report of the copy operation. Below you can find examples for using Robocopy in various usecases.

Copy a directory

Example: Copy all the files in the directory D:\dir1\data to E:\backup\data. Don’t include sub directories or the files stored in those.
Robocopy  D:\dir1\data E:\backup\data
The above command copies system files and hidden files too. Copy and Xcopy commands skip these files by default.
At the end of the command execution, it would print the summary like below.
          Total    Copied   Skipped  Mismatch    FAILED    Extras
Dirs : 22 22 0 0 0 0
Files : 113 113 0 0 0 0
Bytes : 42.96 m 42.96 m 0 0 0 0
Times : 0:00:01 0:00:00 0:00:00 0:00:00

Speed : 83744483 Bytes/sec.
Speed : 4791.897 MegaBytes/min.
Ended : Wed Oct 22 22:26:14 2014

Copy directory structure

Run the below Robocopy command to copy directory structure i.e deep copy of folder hierarchy and the data in all the subfolders.

Robocopy /S D:\dir1\data E:\backup\data
This command does not copy empty directories. To copy them, you need to add /E switch.
Robocopy /S /E  D:\dir1\data E:\backup\data

Delete files and directories from the source after copying

You can add /MOV switch to delete files and /MOVE switch to delete both files and directories.

For deleting files:
Robocopy /MOV /S /E  D:\dir1\data E:\backup\data
For deleting files and directories:
Robocopy /MOVE /S /E  D:\dir1\data E:\backup\data

Modify file attributes for the copied files

Using robocopy command we can also change attributes(system, hidden, readonly) of the copied files. This affects the attributes of the files in the new location, it does not impact the files in the source directory.

For example to copy all files from one directory to another directory and also set hidden attribute for all the files you can trigger ‘Robocopy’ with the below syntax.
Robocopy /S /E  /A+:H D:\dir1\data E:\backup\data

Mirror copy a directory

Below Robocopy command creates a replica of the source folder in the specified destination folder
Robocopy /MIR sourceFolder  destinationFolder
This command also deletes any extra files that are present in the destination and are not present in source.

Replicate access permission on destination folder

The option ‘/sec’ copies all the file access permissions to the destination folder also.
 robocopy /sec sourceFolder destinationFolder
Note that Robocopy copies the security ACLs also to the destination only if the file has been modified. If the file has not been modified, the ACLs won’t be applied on the destination. You can check this Microsoft’s post robocopy file permissions for deeper understanding.

Total Reply 0

Total 104
Number Title Author Date Votes Views
53
Galaxy Note 4 “Downloading don’t turn off the target” error, keeps rebooting by itself, other issues
author | 2019.12.30 | Votes 0 | Views 2359
author 2019.12.30 0 2359
52
Phone is Stuck on “Downloading… Do not turn off target“ Screen
author | 2019.12.30 | Votes 0 | Views 1920
author 2019.12.30 0 1920
51
How to Fix Email Signature Images Being Added as Attachments
author | 2019.09.05 | Votes 0 | Views 3059
author 2019.09.05 0 3059
50
Enable/Disable add-ins
author | 2019.09.05 | Votes 0 | Views 2496
author 2019.09.05 0 2496
49
Image in signature shows as attachment
author | 2019.09.05 | Votes 0 | Views 2594
author 2019.09.05 0 2594
48
How to make images display correctly in email signatures (not as attachments)
author | 2019.09.05 | Votes 0 | Views 2673
author 2019.09.05 0 2673
47
Strange character ¤ in MS Word (2)
author | 2019.09.04 | Votes 0 | Views 3057
author 2019.09.04 0 3057
46
Change the default font in Word
author | 2019.09.03 | Votes 0 | Views 2673
author 2019.09.03 0 2673
45
I am trying to change my font, but it wont let me!!
author | 2019.09.03 | Votes 0 | Views 2364
author 2019.09.03 0 2364
44
MS-DOS and Windows command line robocopy command (1)
author | 2019.08.30 | Votes 1 | Views 5046
author 2019.08.30 1 5046
New