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
|