Well I got a folder to form using both a DRM-restricted azw file and a normal unDRMed prc file.
I made the "updatedtitle" also equal the folder name (because the Amazon DRM books have an "updatedtitle and the book won't go in the folder if the updated title is different from the folder name.
The cmd file text (for some Stephenie Meyer books) was:
for %%a in (*.azw, *.prc, *.mobi) do mobi2mobi.exe "%%a" --booktype "257" --title "Stephenie Meyer" --exthtype updatedtitle --exthdata "Stephenie Meyer" --author "%%~na" --outfile "%%a"
This got me a folder with both books in it. However, the DRM one shows as a date (the publication date) inside the folder, instead of its name ("Breaking Dawn"). The other one ("Twilight") shows correctly.
Anyone have any ideas?
|