INTERACT FORUM
More => Old Versions => Media Center 11 (Development Ended) => Topic started by: nymaestro on May 09, 2006, 04:13:27 pm
-
I need to setup conditional file paths in the "Rename File from Properties" function based on the "Genre" tag. Can anyone help me?
Thanks!
-
:D
what's the conditions?
-
If "Genre" = "Classical" then \Tag1\Tag2\Tag3\Tag4\Tag5
ElseIf "Genre" = "Jazz" then \Tag1\Tag3\Tag5
Else \Tag1\Tag4\Tag6
...or something like that...
-
this should work:
if(isequal([genre],classical,1),enter classical path between these commas,if(isequal([genre],jazz,1),enter jazz path between these commas,enter the path for all other genres here))
replace the blue bits with you paths.
-
THANK YOU!!!!