Created
August 28, 2019 16:17
-
-
Save DevEarley/f8890840a92d0310bb70be889bed4e52 to your computer and use it in GitHub Desktop.
Recursively get all images in a directory and copy to another folder.
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
for /R "C:\source\" %%G in (*.png *.jpg *.jpeg *.gif *.svg) do copy "%%G" "C:\target\" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Make sure your target folder exists.