Page 1 of 1

[Anime] Split episodes into Year / Season folders (e.g. 2022/Autumn)

Posted: 12 Dec 2022, 06:55
by rednoah
We can move / rename files into different folders based on the {d} episode airdate binding.


e.g. move / rename files into Winter / Spring / Summer / Autumn folders:

Format: Select all

{ d.year }/
{
	switch (d.month) {
		case 1..3: return 'Winter'
		case 4..6: return 'Spring'
		case 7..9: return 'Summer'
		case 10..12: return 'Autumn'
	}
}/{ plex.name }

Code: Select all

2022/Autumn/Chainsaw Man - 01 - Dog & Chainsaw


:idea: If you are using AniDB, then the {startdate} series start date can be used instead of the {d} episode airdate because AniDB creates a new series for every season.

Re: [Anime] Split episodes into Year / Season folders (e.g. 2022/Autumn)

Posted: 12 Dec 2022, 17:39
by Yoange
Thanks, this is perfect