I've looked around but couldn't find an answer, so time to ask.
Is it possible to limit output to only the files that have the specific info I'm looking for?
For example, if I have a directory with 1,000 files in it and one file has a comment in it, if I run ExifTool -comment on that directory, I'll get a line for each file in that directory even though most won't have a useful response.
You can use the -if option, like this:
exiftool -if '$comment' -comment DIR
(note: use single quotes as above on Mac/Linux, or double quotes around "$comment" in Windows)
- Phil
Excellent. Works great. Thank you very much.