2018-04-03

recursively search files and copy them to another location using command prompt

for /r %%x in (*.jpg) do (
   copy %%x c:\temp\
)

This will copy all the jpg files from the current location (including subfolders) to a given path (c:\temp)

No comments:

Post a Comment