Created
November 9, 2016 19:08
-
-
Save jonocairns/020c30e697d77e20ce335fa29252a37c to your computer and use it in GitHub Desktop.
Copy all mkv files inside a folder to an output destination
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
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