SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

File Rename mask and/or Filename mask

I want to try renaming my SK-processed files to a new filename to look like this:

(some ascii character like @ or #)/name/artist/album, preferably separated by space-hyphen-space

Reasoning is that this would give me visual notice within my music manager that file has updated metadata.

BTW, my music manager uses a ‘name’ tag, which may mean the same thing as SK’s ‘title’…

Hi, this isn’t very clear as the mask you have presented is only the folde part of the mask , there is no filename part but to try and answer your question about adding a literal ascii char simply changing the default mask
from

ifnotempty2(albumartist,artist,'/')
+ ifnotempty(album,'/')
+ ifnotempty2(albumartist,artist,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(track,2),' - ')
+ title

to

ifnotempty2(albumartist,artist,'/')
+ ifnotempty(album,'/')
+ '#'
+ ifnotempty2(albumartist,artist,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(track,2),' - ')
+ title

changes the example from

U2/Boy/U2 - 02 - Twilight

to

U2/Boy/#U2 - 02 - Twilight