I would like exiftool to parse my photo achive recursively and list to a CSV file ONLY those that DO NOT HAVE a color profile present.
exiftool -csv -f -r -icc_profile:ProfileDescription /Users/roy/Desktop/historique > roytest2.csv
The above lists ALL files.
TIA
Add -if "not $icc_profile:all" to list only files without an ICC profile. But your command is only outputting ICC_Profile:ProfileDescription, which of course won't exist for these files.
- Phil