Hi, again…
Im running SongKong now and i see that albums with multidiscs and “subtitles” gets one folder each.
Does anyone know how i can make a subfolder like this:
CD01 - Subtitle 1
CD02 - Subtitle 2
Or is this just an bad idea? How do people commonly do this?
This is my string:
ifnotempty2(albumartist.substring(0,1),artist.substring(0,1),'/')
+ ifnotempty2(albumartist,artist,'')
+ '/'
+ ifnotempty2(albumartist,artist,' - ')
+ ifnotempty(pad(mbreleasetype,2),' - ')
+ ifnotempty2(bracketValue(substring(albumyear)),'Unknown Year',' - ' )
+ ifnotempty(pad(album,2),' ')
+ ifnotempty(pad(discsubtitle,2),' ')
+ ifnotempty2(bracketValue(substring(catalogno)),'(Unknown Catalognr)',' ')
+ ifnotempty2(bracketValue(substring(recordlabel)),'(Unknown Recordlabel)',' ')
+ '(' + audioformat + ')'
+ '/'
+ ifnotempty(pad(discno,2),'-')
+ ifnotempty(pad(trackno,2),' - ')
+ ifnotempty(pad(artist,2),' - ')
+ title
function bracketValue(value1){
return value1.length > 0 ? '(' + value1 + ')' :'' ;
}