View Single Post
Old 10-23-2008, 12:12 PM   #35
pilotbob
Grand Sorcerer
pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.pilotbob ought to be getting tired of karma fortunes by now.
 
pilotbob's Avatar
 
Posts: 19,832
Karma: 11844413
Join Date: Jan 2007
Location: Tampa, FL USA
Device: Kindle Touch
Quote:
Originally Posted by GatorDeb View Post
I found out that .prc files don't show so that you have to rename them to .mobi.

If you read this before 8:30a on October 23rd, read this part, otherwise skip it... it will become part of main part of the message in a few days
==================================================
IMPORTANT NOTE: It seems that if the file is .prc, it doesn't show. This is EASILY fixed. If you haven't done this yet, add this line at the beginning and then you just have to do the other line for *.mobi. If you have done it already and your books don't show, create a .cmd file (text file with .cmd extension) that only has this line).

for %%a in (*.prc) do rename "%%a" "%%~na.mobi"

That's it! (along with the rest of this post of course)
================================================== =============================
Or you could just add that extension to your command and prevent processing the files twice.

for %%a in (*.mobi,*.prc) blah blah --outfile %%~na.mobi

BOb
pilotbob is offline   Reply With Quote