Page 1 of 1

How can I make the folder for a TV Show have a zero in front like season 01

Posted: 04 Nov 2017, 20:37
by JohnPrime
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

Re: How can I make the folder for a TV Show have a zero in front like season 01

Posted: 04 Nov 2017, 20:49
by rednoah
The {plex} format does use Season 01 by default. What format are you using?

@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

Posted: 04 Nov 2017, 20:55
by JohnPrime
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

Posted: 04 Nov 2017, 21:04
by rednoah
I recommend using {plex} instead:

Code: Select all

T:/{plex}
That'll give you 2-digit season numbers.

Re: How can I make the folder for a TV Show have a zero in front like season 01

Posted: 04 Nov 2017, 22:02
by kim
or use ".pad(2)"

Code: Select all

{n}/{'Season '+s.pad(2)}/{n} - {s00e00} - {t}
or

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

Posted: 04 Nov 2017, 22:45
by JohnPrime
Woohooo Thanks Kim.

Either of those will do the trick.