If <album artist> is not equal to <artist> I want to put it in a directory structure thus - !Compilations\<album>
If they are equal I'd like it in a this directory structure - <artist:1>\<artist>\<album>
So for case 2 I'd like to create an additional directory tier but I cant figure out how to do it.
This almost works:
Code: Select all
$If(<Artist>=<Album Artist>,<Artist:1>-<Artist>,!Compilations)\<Album>
I expected
Code: Select all
$If(<Artist>=<Album Artist>,<Artist:1>\<Artist>,!Compilations)\<Album>
e.g. for the album by '12 Stones' called #Anthem for the Underdog'. With code 1 I get:
\1-12 Stones
.....\Anthem for the Underdog
which is what I'd expect.
For the second piece of code I get:
\12 Stones=12 Stones1
.....\12 Stones,!Compilations
which somewhat surprised me.
I obviously misunderstand how this is supposed to work. What am I missing?
Thanks.
Kevin