ExifTool Forum

ExifTool => Newbies => Topic started by: JoeS on March 01, 2020, 03:51:35 PM

Title: How can I get more than the first warning in my CSV file?
Post by: JoeS on March 01, 2020, 03:51:35 PM
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:



SourceFileValidateWarning
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.
Title: Re: How can I get more than the first warning in my CSV file?
Post by: StarGeek on March 01, 2020, 04:22:00 PM
Try adding -G4 to your command.
Title: Re: How can I get more than the first warning in my CSV file?
Post by: JoeS on March 02, 2020, 03:06:20 PM
Ah, many thanks. That worked.