I tried to convert some files with diskwriter using this formatting string (my portable only works correctly with 8.3 filenames, in case you wonder):
CODE
$if($and(%artist%,$and(%title%,$and(%album%,%tracknumber%))),
%artist%\%album%\$cut($abbr(%artist%),3)$cut($abbr(%album%),3)$num(%tracknumber%,2),
%_filename%)
What I get are directories named [SYNTAX ERROR IN FORMATTING STRING] (something like that). What mistake am I making? This works (backslashes removed):
CODE
$if($and(%artist%,$and(%title%,$and(%album%,%tracknumber%))),
%artist%%album%$cut($abbr(%artist%),3)$cut($abbr(%album%),3)$num(%tracknumber%,2),
%_filename%)
And this also works:
CODE
%artist%\%album%\$cut($abbr(%artist%),3)$cut($abbr(%album%),3)$num(%tracknumber%,2)
Any help appreciated.