If I understand you correctly, you just want to make sure that you send the file with the pattern you require in your organization. I personally have a custom column that shows a ~ if the book has a series, then i have my items filed differently based on that...for example
Quote:
Code:
{author}/{#myseries2}{series}/{series_index:0>2s} {title}
If there is a series, my directory is
John Doe~Series
Otherwise, it's
John DoeBook Name
|
You could always use the directory version and just use the myfiles section to look for the nook you want
If you just want it all in the title it would probably be something like
Quote:
Code:
{author} - {series:| | - } {series_index:0>2s} {title}
Would appears as:
with John Doe - Series - 01 Book
OR
without John Doe - Book
|