Quote:
Originally Posted by scruffy
The only thing missing now is the option to do a recursive conversion, over a whole directory of files... the current batch file only does within a single folder/directory.
Give us the ability to mass convert via the GUI, since you are calling the commandline program with settings, just build the tree (given a directory) and call it for each matching file found (ie prc,mobi,pdb or all), same settings for each.
|
And how many different times are you going to do this?

Anyway, here is a solution without using the GUI directly ...
As you know, the GUI is only a front-end for the command-line program. After done, the dos box/command prompt remains. Just copy the top of the screen where your calling options are and paste them into 'prc2imp.bat' in place of the '--verbose'.
Now, in the 'prc2imp.bat' file, place '/r' between 'for' and '%%i' and you'll get a recursive convert with YOUR options! Should look like this:
Code:
for /r %%i in (*.prc) do mobi2imp.exe --verbose "%%i" "%%~ni"
You will end up converting all your files, recursively.
And how many different times are you going to do this?