Extract thumbnail images recursively?

Started by handvprice, February 16, 2024, 11:31:33 AM

Previous topic - Next topic

handvprice

I use the command from the FAQ to extract all types of thumbnails, in a batch file, and it works:

exiftool -a -b -W thumbnails/%%f_%%g"-"%%t%%-c.%%s -preview:all dir
But is there a way to make it work recursively? Simply adding -r just results in a file called "-r" being created.

Phil Harvey

Quote from: handvprice on February 16, 2024, 11:31:33 AMSimply adding -r just results in a file called "-r" being created.

That will only happen if you put the -r between -W and its argument.  It will work literally anywhere else in the command line.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

handvprice

TY. That explains some varying results I was getting.