Sort photos on a NAS into folders by date?

« Back to Previous Page
0
Posted by kibodwin (Questions: 1, Answers: 3)
Asked on May 24, 2011 11:50 am
10368 Views

I am unsure if I can ask software based questions here but here goes... I have a NAS and several gigs of unsorted photos. Is there any free / cheap software out there (I use win/osx/linux) I can use to automatically go through all of my photos and sort them onto date named folders? I have tried date tree of osx but it came up with more than 4000 unsorted photos.. My preferences are for a simple dedicated soft a opposed to some sort of photoshop/lightroom/aperture type soft. Thanks, K.

0
Posted by kibodwin (Questions: 1, Answers: 3)
Answered On May 24, 2011 11:57 am

googleing I found this and will take a look through their list.

http://en.wikipedia.org/wiki/Image_organizer

0
Posted by willyyam (Questions: 0, Answers: 10)
Answered On May 24, 2011 12:08 pm

I'd be tempted to write a script to do this (in Python). It would certainly be dedicated software, but it probably wouldn't be what everyone would do.

The "os", "datetime" and "shutil" modules built into Python would take care of almost all your needs - os.listdir() to get the paths to the photos, os.path.getctime() to get the creation time of a given file and datetime.strftime() to get the modification times into strings you can write new directories with. It might take half an hour.

0
Posted by daneelolivaw (Questions: 0, Answers: 1)
Answered On May 24, 2011 12:59 pm

I've been using DIM http://www.alanlight.com/dim/Dim.htm for years now. It pulls the images of my sd card and sorts accordingly. I don't see why it wouldn't work from the NAS to sort them. It allows you to create folders based on Year/Month/Day. Very simple and purpose driven.

0
Posted by kibodwin (Questions: 1, Answers: 3)
Answered On May 24, 2011 2:30 pm

Thank you will for the solution with Python but it would defiantly take me a lot more than 1/2 an hour! I might get a friend who programs to take a look if Dan's Dim doesn't work out. This Dim solution looks good, thanks Dan for this. If I find something else I will post for others to read. K.

0
Posted by kibodwin (Questions: 1, Answers: 3)
Answered On May 25, 2011 1:05 pm

Sorry Dan but Dim does not seem to want to work with mapped drives on osx. I will try on a linux box to see but if anyone has any other ideas that would be great! =)

« Back to Previous Page