IT ENGLISH BOARD

Robocopy command syntax and examples

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

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
103
Join a Microsoft Teams meeting
author | 2020.09.22 | Votes 0 | Views 2530
author 2020.09.22 0 2530
102
How to delete songs and albums from your Google Play Music library
author | 2020.09.19 | Votes 0 | Views 2716
author 2020.09.19 0 2716
101
Watch Prime Video on Chromecast
author | 2020.09.14 | Votes 0 | Views 2642
author 2020.09.14 0 2642
100
How to Fix the Win­dows 10 We Could­n’t Con­nect to the Update Ser­vice Issue (2)
author | 2020.09.09 | Votes 0 | Views 3393
author 2020.09.09 0 3393
99
IONOS Joomla! Standard Installation
author | 2020.09.02 | Votes 0 | Views 1575
author 2020.09.02 0 1575
98
How to improve the life of a Battery: (1)
author | 2020.08.25 | Votes 0 | Views 1591
author 2020.08.25 0 1591
97
Laptop battery not charging
author | 2020.08.21 | Votes 0 | Views 1912
author 2020.08.21 0 1912
96
Plugged in, not charging (1)
author | 2020.08.21 | Votes 0 | Views 1716
author 2020.08.21 0 1716
95
How to add reCaptcha plugin to a custom form on my WordPress website?
author | 2020.08.13 | Votes 0 | Views 1885
author 2020.08.13 0 1885
94
I can't log in to the WordPress admin dashboard after installing and activating Limit Attempts plugin
author | 2020.08.13 | Votes 0 | Views 1570
author 2020.08.13 0 1570
New