L
L
LifeIsDarkness2021-05-03 02:31:55
Images
LifeIsDarkness, 2021-05-03 02:31:55

Is there a program to search for photos in different folders?

There is an archive for 3 years from the messenger, where several thousand photos are stored. Each photo in its day's folder, each day in its month's folder, and so on. To manually save such a set in one place, you have to spend a lot of time and effort, go into each folder and move it to one place from there. Is it possible to automate this business somehow, is there software that would go through all the folders and save the pictures in one place?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Z
Zettabyte, 2021-05-03
@Zettabyte

Explorer in the root folder of the archive -> *.jpgto the search bar -> Ctrl+A, Ctrl+X -> go to "one place" -> Ctrl+V
Then the same for *.jpeg, *.png, and extensions that remain after that.
You can also try this on the command line (cmd.exe):

for /r "c:\archive" %f in (*.jpg) do move "%f" "c:\odno_mesto"
This command must also be run for each of the file extensions, after replacing the folders with real ones.
You can make a test run by replacing movewith copy(copy).

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question