SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Can I get help with my file and folder correct

I was good with my renaming before the new version came out and now I’m lost at how to recreate how I had it before. This is how I would like it. Thanks

Rename Folder from Metadata
rename mask
Artist - Album
ex. Artist - Album

compilation rename mask
Album Artist - Album
ex. Various Artists - Album

Rename File from Metadata
rename mask
Track No - Title
ex. 01 - Title

compilation rename file from Metadata
Track No - Artist - Title
ex. 01 - Artist - Title

Hello,

Here is a way to achieve what you want, assuming that - is not for folder separator in your example.

Rename Folder from Metadata:
(albumartist.length>0 ? albumartist : (artist.length>0 ? artist : ‘’)) + ’ - ’ + album

Rename Folder from Metadata (Compilation):
‘Various Artists’ + ’ - ’ + album

Rename File from Metadata:
(trackno.length>0 ? trackno + ’ - ’ :’’) + title

Rename File from Metadata (Compilation):
(trackno.length>0 ? trackno + ’ - ’ :’’) + (artist.length>0 ? artist + ’ - ’ : ’ ') + title

Hope it helps.

Cheers

Thanks so much Cedrix that helped me out alot.