Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Search all pictures and auto organize by date taken.

New Here ,
Feb 18, 2022 Feb 18, 2022

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.

TOPICS
How to
4.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 18, 2022 Feb 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... ?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 18, 2022 Feb 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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 18, 2022 Feb 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);
            }
        }

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 18, 2022 Feb 18, 2022

Thank you but this is manual work. I need the same option as import pictures from camera or memory card where all pictures are automaticaly placed in their respective folders. In other words how can you sort ex. 1000 pictures from 2000-2020 automaticaly.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 18, 2022 Feb 18, 2022

You would need to write a script to accomplish this. There is no software that I am aware of that can automatically sort your photos and move them.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 18, 2022 Feb 18, 2022

Weird, AB can do it from the memory card but not from the HDD. I'll try PhotoMove. Thanks anyway.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 26, 2022 Feb 26, 2022
LATEST

For 8.95$ photomove does exactly what I was looking for. Thank you all.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines