This is an old revision of the document!
To see all available date/time fields in the file(s), use
exiftool -args -time:all *.jpg
Add the original Exif date to the beginning of the file name, and also move the file to a folder by year-month.
When using -testfile
instead of the real -filename
, it only prints what it would do.
# set destination to a different path dest=/path/to/by_month # test what it would do exiftool -d "$dest/%Y-%m/%Y-%m-%d_%%f-v%%02.c.%%e" '-testname<DateTimeOriginal' /path/to/process # do it exiftool -d "$dest/%Y-%m/%Y-%m-%d_%%f-v%%02.c.%%e" '-filename<DateTimeOriginal' /path/to/process
%%f
: original filename (basename) without extension%%02.c
: Numbering in case of duplicates: "00", "01", etc.%%e
: extensionAfter the Exif rename, remove the unneeded "-v00" extension in the destination:
find "$dest" -iname "*-v00.jpg" -exec rename -v 's/-v00(\.jpg)/$1/i' {} +
exiftool '-FileModifyDate<DateTimeOriginal' *
or
-ext jpg
: only .JPG files (case-insensitive)-r
: Recursive (also process subfolders) exiftool -r -ext jpg '-FileModifyDate<DateTimeOriginal' /path/to/process