Everything else is working fine, but when I run Actions>File and Folder Correct>Correct SubFolder from Metadata, it produces no effect at all on subfolder path.
The prefs on File and Folder Correct>Rename Folder From Metadata, for both rename mask and compilation rename mask, is set as below. Albumartist fields have good data on all files. What could be wrong?
function ifnotempty(value,sep){
return value.length > 0 ? value + sep : ‘’;
}
function ifnotempty2(value1,value2,sep){
return value1.length > 0 ? value1 + sep :value2.length > 0 ? value2 + sep:’’ ;
}
ifnotempty(albumartist,folderseparator) + ifnotempty(album,folderseparator) + (disctotal>1 ? discno + folderseparator : ‘’)