View Single Post
Old 07-23-2019, 11:34 AM   #4
Shark69
Zealot
Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.Shark69 ought to be getting tired of karma fortunes by now.
 
Shark69's Avatar
 
Posts: 136
Karma: 493152
Join Date: Mar 2012
Location: Spain
Device: Kindle Oasis 2
You can recover "new" label changing the book file timestamp to now and deleting sidecar files used to store book advance.
ie:

Quote:
f:
cd "F:\documents\Alan Furst"
copy /b "oficial polaco, El - Alan Furst.azw3" +,,
del "F:\documents\Alan Furst\oficial polaco, El - Alan Furst.sdr"\*.azw3?
These commands recover the "NEW" label for this book.
Sidecar files are:
azw3f y azw3f files for mobi y azw3 books.
yjf y yjr files for kfx books

This script set as NEW all books...

Quote:
for /r %%x in (*.azw3 *.mobi *.kfx) do (
echo "%%x"
copy /b "%%x" +,,
)
for /r %%x in (*.azw3f *.azw3r *.yjf *.yjr) do (
echo "%%x"
del "%%x"
)
pause

Last edited by Shark69; 07-23-2019 at 12:21 PM.
Shark69 is offline   Reply With Quote