View Single Post
Old 02-25-2016, 11:50 AM   #12
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
I'm using ADE 1.7.3 so I don't know if later versions work exactly the same way ...

When I download a book the .epub file is stored in "My Digital Editions/" and a record is added to "My Digital Editions/manifest.xml". When I delete a book the record is removed from manifest.xml but the .epub file remains.

So to see if an .epub file is from a deleted book, check if it is mentioned in manifest.xml. E.g. on Linux this command run from within "My Digital Editions/" will list all the .epub files that belong to deleted books:
Code:
for F in *.epub; do grep -q $F manifest.xml || echo $F; done

Last edited by GeoffR; 02-25-2016 at 01:43 PM. Reason: spelling of manifest.xml
GeoffR is offline   Reply With Quote