ExifTool Forum

ExifTool => Newbies => Topic started by: SialoS on November 02, 2023, 05:45:31 AM

Title: -if " not $DateTimeOriginal" always fails.
Post by: SialoS on November 02, 2023, 05:45:31 AM
I want to change the date taken of my photos only if its empty, to the date modified of the file. Unfortunately, the condition always fails and I cannot understand why. I have the latest version of the tool, i am on Windows 11, and below is my command:
.\exiftool -config oldest -if "not $DateTimeOriginal" "-DateTimeOriginal<OldestDateTime" -P -r -overwrite_original "C:\Users\mike\Desktop\a\DSCN8039.JPG"
with the same command, i try a picture with an empty date taken, and one with a date taken field and I always get the same response" 1 files failed condition"

What am I missing here? (the config that I use is from these forums and it is for always choosing the oldest day)
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: Phil Harvey on November 02, 2023, 06:51:59 AM
Did you try this command on the files?:

exiftool -datetimeoriginal FILE

If that produces no output, try this command to see what date/time tags exist:

exiftool -G1 -s -time:all FILE

- Phil
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: SialoS on November 02, 2023, 06:58:26 AM
Hi Phil,
Thank you for your reply
this command
exiftool -datetimeoriginal FILE

gives this response:

Date/Time Original              : 0000:00:00 00:00:00
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: Phil Harvey on November 02, 2023, 06:59:19 AM
So that file will fail the condition because DateTimeOriginal exists.

If you want to also test for a zero year,  try this:

exiftool -if "not $datetimeoriginal or $datetimeoriginal=~/0000/" ...

- Phil
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: SialoS on November 02, 2023, 07:06:25 AM
tried it but again the condition is failing
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: Phil Harvey on November 02, 2023, 07:34:43 AM
Is it possible to copy and paste the result of those last 2 commands here?  I can't tell what you are doing wrong without more information.

- Phil
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: Phil Harvey on November 02, 2023, 07:35:52 AM
Wait.  Are you using PowerShell?  If so, you may need to use single quotes instead of double quotes.

- Phil
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: SialoS on November 02, 2023, 07:44:49 AM
Yes i am using powershell and yes the single quotes did the trick!!!

i spend so many hours on this!
Thank you Phil!
Title: Re: -if " not $DateTimeOriginal" always fails.
Post by: StarGeek on November 02, 2023, 10:43:30 AM
You must pay attention to the highlighting in Powershell.  When you see the different color highlighting as with $CreateDate below, then that means it is being treated differently than the rest of the command.
(https://i.imgur.com/FcutDb9.png)

PowerShell fails on some basic exiftool commands so if you have problems with a command, you should test the command on CMD to make sure PS isn't messing things up.