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.
.jpg
and .bmp
files from one directory to another:robocopy {{path/to/source}} {{path/to/destination}} {{*.jpg}} {{*.bmp}}
robocopy {{path/to/source}} {{path/to/destination}} /E
robocopy {{path/to/source}} {{path/to/destination}} /MIR /COPYALL
robocopy {{path/to/source}} {{path/to/destination}} /E /XO
robocopy {{path/to/source}} {{path/to/destination}} /MIN:52428800 /L
robocopy {{path/to/source}} {{path/to/destination}} /Z /R:5 /W:15
robocopy /?