Skip to content

Instantly share code, notes, and snippets.

@jonocairns
Created November 9, 2016 19:08
Show Gist options
  • Save jonocairns/020c30e697d77e20ce335fa29252a37c to your computer and use it in GitHub Desktop.
Save jonocairns/020c30e697d77e20ce335fa29252a37c to your computer and use it in GitHub Desktop.
Copy all mkv files inside a folder to an output destination
if not exist "../output" mkdir "../output"
for /R %%f in (*.mkv) do copy %%f "%cd%\..\output"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment