I'm running exiftool from the parent directory of the folder I'm applying the json to, but I'm running into an issue with SourceFile not matching. I have SourceFile set to the file name of the image, but exiftool looks for Images/FileName.jpg. Is there a way to just use the filenames without the directory?
Here's the command i'm using: exiftool.exe -json=Formatted.json Images
Try changing the directory to the Images directory, run the command there, and use dot . as the directory name:
exiftool.exe -json=Formatted.json .
Aha, that's simple! Works, thanks.