Hi-
Just bought a SongKong license, running on Synology.
When I rename, some of my files and folders are renaming, and others are not. I can’t discern a pattern!
You can see in the attached screen shot that in the report, that Alfred Delie is being moved correctly to a directory in the Artist directory, while A Classical Christmas is not moving.
Is that because it’s a Compilation and I don’t have a file mask that works for compilations? Or something else.
EDIT: Actually, looks like the ones that aren’t moving many of them do not have a disc number. Is there a way that I can ensure that disc numbers get written? Do I need to run metadata corrections first?
EDIT2: There must be something else missing from these files maybe? I used manual edit to add discno 1 and disc total 1 for the Aretha Franklin album, and then tried to rerun rename files on that directory - and it renamed the individual files, but didn’t move anything.
Thanks, also uploaded support files.
John
FWIW, this is the file mask that I’m using for both albums and directories, and my move directory is /music/flac/Artist
ifnotempty(albumartist.length > 40 ? albumartist.substring(0, albumartist.lastIndexOf(' ', 40)) : albumartist, '/') +
ifnotempty(album.length > 30 ? album.substring(0, album.lastIndexOf(' ', 30)) : album, '/') +
(ifnotempty(discno) ? discno + '-' : '') +
ifnotempty(pad(trackno,2), ' ') +
(title.length > 30 ? title.substring(0, title.lastIndexOf(' ', 30)) : title)