Just purchased Filebot for Windows 10 because I wanted to the support the developer and the sale price fit into my budget.
The hierarchy I have for shows is like this:
Show Name
Season 01
Season 02
So when I rename with Filebot and it puts the file in "Season 1" it makes a new folder and will allow me to duplicate shows because they are in different folders.
I figure there must be a way to make Filebot name single-digit numbers with a zero in front.
Really appreciate the help.
- JohnPrime
How can I make the folder for a TV Show have a zero in front like season 01
Re: How can I make the folder for a TV Show have a zero in front like season 01
The {plex} format does use Season 01 by default. What format are you using?
@see https://www.filebot.net/naming.html
@see https://www.filebot.net/naming.html
Re: How can I make the folder for a TV Show have a zero in front like season 01
I am using: T:/{n}/Season {s}/{n} - {s00e00} - {t}
Re: How can I make the folder for a TV Show have a zero in front like season 01
I recommend using {plex} instead:
That'll give you 2-digit season numbers.
Code: Select all
T:/{plex}
Re: How can I make the folder for a TV Show have a zero in front like season 01
or use ".pad(2)"
or
Code: Select all
{n}/{'Season '+s.pad(2)}/{n} - {s00e00} - {t}
Code: Select all
T:/{plex.tail}
Re: How can I make the folder for a TV Show have a zero in front like season 01
Woohooo Thanks Kim.
Either of those will do the trick.
Either of those will do the trick.