1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 19:04:55 +02:00
tldr/pages/windows/robocopy.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

1.2 KiB

robocopy

Robust File and Folder Copy. By default files will only be copied if the source and destination have different time stamps or different file sizes. More information: https://docs.microsoft.com/windows-server/administration/windows-commands/robocopy.

  • Copy all .jpg and .bmp files from one directory to another:

robocopy {{path/to/source}} {{path/to/destination}} {{*.jpg}} {{*.bmp}}

  • Copy all files and subdirectories, including empty ones:

robocopy {{path/to/source}} {{path/to/destination}} /E

  • Mirror/Sync a directory, deleting anything not in source and include all attributes and permissions:

robocopy {{path/to/source}} {{path/to/destination}} /MIR /COPYALL

  • Copy all files and subdirectories, excluding source files that are older than destination files:

robocopy {{path/to/source}} {{path/to/destination}} /E /XO

  • List all files 50 MBytes or larger in size instead of copying them:

robocopy {{path/to/source}} {{path/to/destination}} /MIN:52428800 /L

  • Allow resuming if network connection is lost and limit retries to 5 and wait time to 15 sec:

robocopy {{path/to/source}} {{path/to/destination}} /Z /R:5 /W:15

  • Display detailed usage information:

robocopy /?