When songs or artists have a "/" in the name it will be saved in an extra folder. For instance, any song by AC/DC will be saved to
$HOME/Music/pianobarplus/artists/AC/DC/ALBUM/SONG.mp3
Yes, there is a folder called "DC" in a folder called "AC".
The way to fix this is to replace all "/" with ":". The ":" will show up if you "ls" the file on the terminal, but if you view them from the finder the ":" will appear as a "/"
I added a utils.h and utils.c file that contains a function called replaceChars. It is called to replace any '/' with ':' so the files will save correctly.
When songs or artists have a "/" in the name it will be saved in an extra folder. For instance, any song by AC/DC will be saved to
$HOME/Music/pianobarplus/artists/AC/DC/ALBUM/SONG.mp3 Yes, there is a folder called "DC" in a folder called "AC".
The way to fix this is to replace all "/" with ":". The ":" will show up if you "ls" the file on the terminal, but if you view them from the finder the ":" will appear as a "/"