Skip to content

Instantly share code, notes, and snippets.

@naqushab
Last active January 16, 2018 13:23
Show Gist options
  • Save naqushab/2f78ced1805c55d411dce6cd4ed281cc to your computer and use it in GitHub Desktop.
Save naqushab/2f78ced1805c55d411dce6cd4ed281cc to your computer and use it in GitHub Desktop.
Move all files to another dir recursively
for /r "Source Folder" %x in (*.ext) do copy /y "%x" "Destination Folder"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment