ExifTool Forum

ExifTool => Newbies => Topic started by: Nexius2 on June 04, 2018, 07:13:24 AM

Title: rename files with datetime and folder name
Post by: Nexius2 on June 04, 2018, 07:13:24 AM
Hello,
I'm trying to rename my files with datetime and parent folder.  my problem comes from the structure of the parent directory. sometimes, it's just a description and sometimes I have a date in front in different format (YYYY-MM-DD or YYYY or YYYY-MM or YYYY-MM-DD-DD .... hope that's it). what I would like is to have only the description in the filename so if I have "./photo/2018-04 - sun/yellow.jpg" or "./photo/2018-04-02 sun/yellow.jpg" I would like "./photo/2018-04 - sun/2018-04-02_05-45-12 - sun.jpg"
this is where I am now. a bit of help would be helpfull

exiftool -d %Y-%m-%d_%H-%M-%S%%-c '-filename<${DateTimeOriginal;} - ${directory;s(.*/)()}.%le' -r .
Title: Re: rename files with datetime and folder name
Post by: Phil Harvey on June 04, 2018, 07:23:14 AM
Try this:

exiftool -d %Y-%m-%d_%H-%M-%S%%-c '-filename<${DateTimeOriginal} - ${directory;s(.*/)();s/^\d+.*? (- )?//}.%le' -r .

Here I am deleting any numbers up to the first space (with an optional "- " after that) from the start of the directory name.  I have also removed the ";" for DateTimeOriginal because this shouldn't be necessary.

- Phil
Title: Re: rename files with datetime and folder name
Post by: Nexius2 on June 04, 2018, 07:30:46 AM
Great ! if works perfectly.
thanks !