Quote:
Originally Posted by LordSith77
My save to disk template is thus:
{author}/{series}/{title}/{series}{series_index:0>2s| – | – }{title} - {authors}
|
You can use the template function 'shorten()' to make the names predictable so the folder structure works. You allocate a certain number of characters to each section, then use shorten() to ensure that the allocations are respected.
For example, a template that ensures that the total length is less than around 200 characters could be:
Code:
{author:shorten(20,-,9)}/{series:shorten(20,-,9)}/{title:shorten(20,-,9)}/{series:shorten(20,-,9)}{series_index:0>2s| – | – }{title:shorten(20,-,9)} - {authors:shorten(20,-,9)}
I expect you would adjust the various shorten()s so that the output length is what you need and makes the most sense to you.