Hi all.
Using the {plex} renaming format is there a property or method to change the "S01E01" string to use lowercase, like "s01e01"?
Thanks!
Lowercase season and episode under Linux?
Re: Lowercase season and episode under Linux?
Sorry, no built-in helper for this particular use case.
You can however use generic code to rewrite the file path that {plex} gives you:

Code: Select all
{ plex.path.replaceAll(/S\d+|E\d+/){ it.lower() } }
Re: Lowercase season and episode under Linux?
Excellent, that'll be just fine, thank you!