Last active
December 3, 2019 00:27
-
-
Save Legends/666b8255b7642d7903d5d9a9dde392a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ############################### COPY DIRECTORIES | |
| // the source and destination folder should not end with a backslash `\`, this irritates robocopy --> error | |
| robocopy "C:\Users\Admin\Source\Repos\legends.static.github.io" "C:\Users\Admin\Source\Repos\legends.static.github.io.copy" /S /ZB /COPY:DATS /XD "node_modules" "dist" | |
| // ############################### MOVE DIRECTORIES --> XCOPY | |
| robocopy "C:\Users\Admin\Documents\" "D:\SystemFolders\Documents" /S /ZB /COPY:DATS /MOVE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment