How to put pictures in a file folder

broken image
broken image

In my example I've chosen C:\ per your request. The script starts searching from the directory you give it.

broken image
broken image

You don't want the batch script copying from it's own output folder.Į:\allPictures\ is the output, which is what you need to change. This script should do the job for one partition at a time: for /R 'C:\' %%G in (*.png *.jpg *.jpeg *.gif) do copy '%%G' 'E:\allPictures\'īe aware, that I would strongly advise you to add an external hard drive and point the output to a folder on it. The easiest way is probably to make a batch file, which searches recursively for a specific file type and copy all instances of it to a folder of your choice.