SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Please help me with the file and folder renaming code

I really know nothing about programming, and Jaikoz coding for the file and folder rename is too complex for me. Please help me with the code necessary for this structure:

Artist/Artist - [year] Album title/Artist - Track number - Songtitle

Thank you so much!!!

This should give you what you asked for :

artist + ’ / ’ + artist + ’ - ’ + ’ [ ’ + year + ’ ]’ + album + ’ / ’ + artist + ’ - ’ + trackno + ’ - ’ + title

If not please post an example of how you want to see it.

In Jaikoz the file renaming and (sub)folder renaming are two separate tasks with their own masks, so filename mask would be

artist + ’ - ’ + trackno + ’ - ’ + title

and (sub)folder mask would be

artist + folderseparator + artist + ’ - ’ + ’ [ ’ + year + ’ ]’ + album

thanks you so much!!! it’s much easier than what I thought!!!