
Not wotking:

Not wotking:

Not finding anything.
I few other as well ( exif all values) with File format error and error doesn'y find anything. Howto succeed?
Moderator: xnview
Script for XnViewMP? Exiftool?jkm wrote: Sat Jul 25, 2026 5:18 pm Those are not actually tags, they are Exiftool diagnostic data. They are not searchable in XnViewMP. The field name you entered in the search dialog is invalid.
You can write a batch file or script if you want to directly test for exiftool errors.
Code: Select all
@echo off
setlocal
:: Set folders here (keep the quotes, do not add a trailing slash)
set "SOURCE_DIR=C:\path\folder"
set "DEST_DIR=C:\path\folder2"
echo Scanning for files with ExifTool errors...
echo Source: %SOURCE_DIR%
echo Destination: %DEST_DIR%
echo ---------------------------------------------------
:: The ExifTool command to find errors and move the files
:: -r means scanning sub folders of %SOURCE_DIR%: remove -r if sub folders not needed
exiftool -charset filename=utf8 -r -if "$error" -Directory="%DEST_DIR%" "%SOURCE_DIR%"
echo ---------------------------------------------------
echo Scan and move complete!
pause