Quote:
Originally Posted by bodiccea
I added a custom column {#brtime} of type date and built from other values.
Its template is "{timestamp:format_date(yyyyMMddhhmm)}". The issue is {timestamp} is book change, not metadata. For me changing metadata is changing book too.
My "Saving books to disk" template is (one subdir per book language).
{languages}/{#brtime}-{author_sort} - {series:|(| } {series_index:0>2s|#|) - }{title}
|
Why create a custom column? You can do the same thing in the save-to-disk template
Code:
{languages}/{timestamp:format_date(yyyyMMddhhmm)}-{author_sort} - {series:|(| } {series_index:0>2s|#|) - }{title}
You can also use the last_modified date, which is the last time the metadata for the book changed.
Code:
{languages}/{last_modified:format_date(yyyyMMddhhmm)}-{author_sort} - {series:|(| } {series_index:0>2s|#|) - }{title}