Chaley already pointed you to the command line interface for conversions.
Quote:
Originally Posted by Starganderfish
"author first name" "author surname" - "series name" "series no." (if part of a series) - "title"
|
As long as you don't really have all of those quotes in your file name using this Regex under Preferences - Adding Books should work.
Code:
^((?P<author>([^\-_0-9]+)(?=\s*-\s*)(?!\s*-\s*[0-9.]+)|\b))(\s*-\s*)?((?P<series>[^0-9\-]+)(\s*-\s*)?(?P<series_index>[0-9.]+)\s*-\s*)?(?P<title>[^\-_0-9]+)
Also if you want to grab the metadata from the file name make sure you do NOT have
Read metadata from files contents checked (also in the Preferences - Adding Books section).
I didn't create the above regex, its been wandering around for a while.