Quote:
Originally Posted by sirdouglas
Eek, batch file? Unfortunately I'm not that knowledgeable with this computer stuff.
|
Don't be scared. A batch file is nothing more than a series of commands that you would type into the command prompt all place together. You can do some basic things to each file with a simple for command.
A simple example. Lets say to add a .PRC file to Mobipocket you could do this at the command line:
mobireader /add MYfilename.prc
So, you could use the following command to add all the .prc files in a folder:
for %%i in (*.prc) do mobireader /add %%i
If you put than in a batch file named add2mobi.bat then you can just run that bat file anytime by double clicking it.
BOb