I thought there was a simple switch in mogrify command options that tells it go through subfolders as well. I didn't find any. On Linux, the "find" command seems to do the trick, how do you do this on Windows?
magick mogrify -resample 72 -resize 700x700 -format png -path "C:\ImageMagick-7.0.8-Q16\dest" *.*
works but I need it to recurse through subfolders as well. What's the simplest way to do that?
Ideally, I'm looking for the source directory structure to be retained in destination but with the processed images only.