I am trying to build an expression using the Album Type tag to determine how to create the folder for file renaming so that albums with multible artist go in a folder "Various Artists\Album\" rather than Artist\Album which leaves me with lots of folders with only one song in them. I eventually want to try this on the HH sync.
My expression under the Directories Rule:
If(IsEqual(AlbumType(), Multiple artists (complete), 1),Various Artists\[Album], [Artists (grouped)]\[Artist]\[Album])
Resulting ouptut
0, Various Artist\[Album], [Arists (grouped)]\[Artist]\[Album])\[Name]
So for:
Album= 1999 Grammy Nominees
Artist= Dixie Chicks
Artists (grouped)= D
Name= Wide Open Spaces
Album Type= Multiple artists (complete)
my resulting folder structure is:
\0, Various Artist\1999 Grammy Nominees, D\Dixie Chicks\1999 Grammy Nominees)\Wide Open Spaces.MP3
Notice that I even get the end ")" of the If statment just before the filename at the end. It is acting like the "If(" is getting trashed. When I take the If statement out I get the same results with out the end parenthesis after the album at the end.
Is my expression wrong or does the file renamning not handle this level of nesting?