View Single Post
Old 10-02-2022, 08:49 AM   #97
hleo12
Guru
hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.hleo12 ought to be getting tired of karma fortunes by now.
 
hleo12's Avatar
 
Posts: 655
Karma: 5078890
Join Date: Feb 2014
Device: Kobo Glo (deceased), Kindle 4th, Kindle Basic 10th Generation
I found a workflow that works for me. Makes sending epubs infinitely easier.

Save to Disk template:
Code:
{series} {series_index:0>5.2f} {title} - {authors}
BAT file:
Code:
@ECHO OFF
PUSHD .
FOR /R %%d IN (.) DO (
cd "%%d"
IF EXIST *.epub (
REN *.epub *.txt
)
)
POPD
Use Save to Disk option to put the books in a single folder.
Put the .bat file inside the same folder.
The .bat file will automatically change all .epubs inside the folder to .txt so you can send it using the Send to Kindle app.
The template includes the author because the app doesn't automatically populate the author field. Just cut & paste.

This cuts through so many steps that I'm really considering this over sideloading.


Anyway, I just thought I'd share in case somebody else plan to send bulk books to their Kindles.
hleo12 is offline   Reply With Quote