Skip to main content
Participant
February 18, 2022
Question

Search all pictures and auto organize by date taken.

  • February 18, 2022
  • 1 reply
  • 4310 views

New to Adobe Bridge and lookig for an option of searching my photo library (jpg and raw files) on the NAS and auto orginize them by date taken in to their respective folders. If not possible what aother software can do this.

This topic has been closed for replies.

1 reply

Legend
February 18, 2022

I'm not sure what you want. Are the photos all in one big folder and you want to move them to new folders, or... ?

Participant
February 18, 2022

They are in the folders by year however some of them are in the wrong folders so I'm looking for the option to search/scan them all and auto place in folders based on the create date. Same option as inserting CD camera card "Get photos from the camera" but instead I want to use my NAS share.

Legend
February 18, 2022

Searching is easy, but moving things around would either require a script or just label/keyword and then manually moving.

Do a custom search with Date Created greater than 12/31/2021 to fine anything from 2022. Move all of those to the correct folder and label them, say, Done. Then search for > 12/31/2020 and filter by label. Again move as needed. Rinse and repeat for each year.

As for a script, you can read Date Created and do something based on that data. This is a script snippet that you can start with:

 

    var Thumbs = app.document.selections;
    for(var a in Thumbs){
        try{
            if(Thumbs[a].hasMetadata){
                var date = Thumbs[a].creationDate.toString());
                alert(date);
                }
            }
        catch(e){
            alert(e + ' ' + e.line);
            }
        }