lsquare wrote in post #7234774
Thanks a lot for the detailed post! I feel intimiated by the command-line only programs. Have you used any of the GUI front-ends before?
I have not tried any of the GUI front ends, sorry can't help you there.
lsquare wrote in post #7234774
When you changed the capture date, did the modification date changed as well?
"Modification Date" is ambigious:
File modification date will change to the date time that I ran exiftool, however, there is a way to change the file's modification date using exiftool (I run this script a lot when scanning in images).
exiftool "-DateTimeOriginal>FileModifyDate" _MG_1931.CR2
This above command is setting the actual File's Modification Date/Time to whatever the Exif DateTimeOriginal is set to.
(I'm on a Mac, Windows Dir will be a tad bit different)
-rw-r--r-- 1 glen staff 12367600 Oct 30 2006 _MG_1931.CR2
If you mean the Exif Modification Date, you just specify that tag on the command line:
exiftool "-ModifyDate=2006:10:30 6:05:13" _MG_1931.CR2
Modify Date : 2006:10:30 05:13:00
You can add all of those separate commands together on a single command line to make things easier.
lsquare wrote in post #7234774
What's the difference between the capture and create dates? Are both dates filled out in the Exif when the file is created within the camera?
From what I can tell, yes.
FYI: If you are ever bored and want to know what tags you can set, you can run "exiftool -list", it is a large list. I usually pipe this to a text file and then open the text file whenever I forget a tag.
Also, I keep a running text file called "Exiftool What Works for me.txt" and I paste in various command line options & descriptions that I know work. I always consult this file to see if I have either tried something or if I need to get something done that isn't already in a script (or drop action) somewhere.