Quote:
Originally Posted by mdibella
Also assume that I have a Python script (call it 'MobiDeXXX') that will magically change them into something that I can load into Calibre and then do a batch-convert to the format Sony loves.
But if anyone can help with this, I would be most grateful! 
|
You can create a batch file... debulk.bat with the following line in it:
for %%i in (*.prc) do MobiDeXXX.py %%i %%~ni_free.prc PID
Hypothetically of course. You could even get a bit more fancy and add an IF NOT EXISTS to it to only run the command if the _free file doesn't exist. I think adding an /R after the for and it will recurse directories also.
BOb