ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: feklee on October 26, 2021, 08:22:01 AM

Title: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: feklee on October 26, 2021, 08:22:01 AM
Should be a combination of find and exiftool I presume, but I'm a bit too lazy to think...
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: Phil Harvey on October 26, 2021, 08:27:42 AM
exiftool -p "$filepath" -r -if "$datetimeoriginal gt '2021:09:25' and $datetimeoriginal lt '2021:10:05'" DIR
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: feklee on October 26, 2021, 08:48:13 AM
Woah, thanks, this is really nice!
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: feklee on November 02, 2021, 07:47:04 AM
Although, if I want to include September 25 and October 5, I assume I need to change to:

exiftool -p "$filepath" -r -if "$datetimeoriginal ge '2021:09:25' and $datetimeoriginal le '2021:10:05'" DIR
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: StarGeek on November 02, 2021, 10:52:04 AM
No, that would not be correct.

On the low end, the moment you add a time component it becomes greater than 2021:09:25. So every time stamp on 2021:09:25 00:00:00 through 23:59:59 will be greater than just 2021:09:25.  The only time you would really need to use ge (greater than or equal) is if, for example, you had scanned an image that you knew took place on that date but didn't know the time, and then set the tag to just 2021:09:25 without any time component. But using ge won't cause any problems, as you would still get all the time stamps on that date.

On the other end, if you want to include 2021:10:05, you need to be less than the next date because, again, when you add the time component, every time on 2021:10:05 will be greater than just 2021:10:05.  So you need to be less than 2021:10:06.  The only way you could use less than or equal to on the high end would be to use le '2021:10:05 23:59:59'
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: feklee on November 02, 2021, 11:54:00 AM

Good that I asked, thank you! So the original command line posted by Phil only needs one small change, 2021:10:06 instead of 2021:10:05:

exiftool -p "$filepath" -r -if "$datetimeoriginal gt '2021:09:25' and $datetimeoriginal lt '2021:10:06'" DIR

Then I should get all pictures taken between September 25 and October 5, including these dates.
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: StarGeek on November 02, 2021, 12:30:24 PM
Yes, that is correct.
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: Phil Harvey on November 02, 2021, 04:54:08 PM
Quote from: feklee on November 02, 2021, 11:54:00 AM
So the original command line posted by Phil only needs one small change, 2021:10:06 instead of 2021:10:05:

My command was correct for the date range you indicated in the title of your post, assuming you wanted the end dates to be included.

- Phil
Title: Re: How to find all JPEGs taken between 2021-09-25 and 2021-10-04? (recursive)
Post by: feklee on November 02, 2021, 05:24:56 PM
Quote from: Phil Harvey on November 02, 2021, 04:54:08 PMMy command was correct for the date range you indicated in the title of your post, assuming you wanted the end dates to be included.

You're right. Sorry, I got confused about the dates.