Whilst I’m waiting for someone to solve my licence woes - this is my renaming scheme for sub-folders:
Non compilation:
(label.length>0? label.substring(0,1) + folderseparator + label:'White Label') + folderseparator +
(albumartist.length>0 ? albumartist: (artist.length>0 ? artist : '')) + folderseparator +
album + (mbreleasecountry.length>0 ? ' (' + mbreleasecountry + ')' : '')
which translates to,
If the file has a Record label:
Otherwise
Compilation
'Compilation' + folderseparator +
album + (mbreleasecountry.length>0 ? ' (' + mbreleasecountry + ')' : '')
which translates to,
If the file has a Record label:
Otherwise