Skip to content

Instantly share code, notes, and snippets.

@chosenonehacks
Created September 18, 2017 12:37
Show Gist options
  • Save chosenonehacks/c09516eedcadcf47736d60842ddfb0ad to your computer and use it in GitHub Desktop.
Save chosenonehacks/c09516eedcadcf47736d60842ddfb0ad to your computer and use it in GitHub Desktop.
Copy recursively in windows
#That will copy an antire directory, including subdirectories, to the target.
#The /Y suppress the overwite prompt and just does it without asking.
xcopy /S /E /Y <from> <to>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment