Hello,
I pologize if this is a post - I thought I posted it last night, but now I don't see it.
Is it possible to write a batch file to run exiftool multiple times to rename files based on different conditions, where in some cases more than one condition is true for the same file? I have a batch file at the end, but when I run this, it goes thru all files, and in each case, stops after the first true "if" statement. Is it possible to do all of this in one file, or do I have to create a batch file for each and then wrap another batch file around them (I haven't tried that yet, so I don't even know if it will work). Anyway, here is the batch fle. Thanks!
rem @echo off
exiftool "-filename=%%f_PixelShift.%%e" -if "$PixelShiftResolution eq 'On'" *
rem HDR will start with HDR if on:
exiftool "-filename=%%f_HDR.%%e" -if "$HDR lt 'Off'" *
exiftool "-filename=%%f_flash.%%e" -if "$flash ge 'On'" *