View Single Post
Old 03-28-2015, 08:06 AM   #40
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
Posts: 13,578
Karma: 79436940
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
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
Code:
for /?
. There are many MANY options to parse the filename (ie the %1).
PeterT is offline   Reply With Quote