Its TRIVIAL to write such a batch file.....
The jist of it will be
Code:
for /r %1 in (*.original_fmt) do some_command_involving_%1
This will search for original_fmt files in all child directories of the current directory.
To see all the options on the
for command, in a command window type
. There are many MANY options to parse the filename (ie the %1).