Hello,
I've successfully created a CSV file with all the warnings and errors from the JPG files in my folder and subfolders, using:
exiftool.exe -csv -validate -warning -ext .jpg -r . > file.csv
But the output only ever shows the first warning, and there are often many more, eg:
SourceFile | Validate | Warning |
folder/photo001.jpg | 12 Warnings (10 minor) | [minor] Non-standard ExifIFD tag 0xea1c Padding |
How can I see all the warnings? I've tried adding -a as below:
exiftool.exe -csv -validate -warning -a -ext .jpg -r . > file.csv
But this doesn't seem to work?
Many thanks.
Ah, many thanks. That worked.