

In Jaikoz 3.6 we have made use of functions to provide better default masks. Ifnotempty(album,'-')+ ifnotempty(trackno,'-') + ifnotempty(title,'')Īs you can now see the complexity is put into the function once, then the resultant mask can be much more concise. Return value != undefined & value.length > 0 ? value + sep : '' However recently discovered there is nothing to stop you defining functions within your filename mask so the above can be replaced by Unfortunately as a number of you have commented the Javascript is not as easy to understand as the old syntax, I traded this for the power the Javascript notation gives us. its very fiddly and easy to make a mistake when editing. (album.length>0 ? album + '-':'') + (trackno.length>0 ? trackno + '-':'')Īlthough its fairly clear what it is doing. Then this was replaced with support for full Javascript syntax, this allows you to do pretty much anything but creating the correct mask could be long winded and error prone. Jaikoz used to have quite a simple language for the rename mask that allowed most metadata to be used in the filename but only provided simple if statements. Some applications require the filename to be in a particular format.
#JAIKOZ CREATING ADDITONAL FOLDERS HOW TO#
Although most music players depend only on the metadata within the song itself, we all have different preference of how to name our files and this helps us to keep them organized.

An important aspect of tagging your songs is renaming your songs so that they match the metadata within the song.
