Search found 2 matches

by skrowl
07 Oct 2014, 02:00
Forum: Episode / Movie Naming Scheme
Topic: Single genre from genre list by priority??
Replies: 7
Views: 8753

Re: Single genre from genre list by priority??

Lots of examples here in the forums somewhere.

genres.contains('something') ? A : B

A ternary operator like that is nice if I only had 2 options, but I basically need an if / else if / else if / else if / else.

if genres contain "Romance" then folder name is "Chick Flick"
else if genres ...
by skrowl
06 Oct 2014, 22:57
Forum: Episode / Movie Naming Scheme
Topic: Single genre from genre list by priority??
Replies: 7
Views: 8753

Single genre from genre list by priority??

I'm trying to categorize a bunch of movies into single genre folders.

For example X:\Science Fiction\Avatar (2012).mkv

I'd like to set up a priority system to determine which "wins" and gets to become the folder name.

For example:


If genres contains "Romance" then it gets folder name "Chick ...