wesdotcool / pianobarplus

Console-based pandora.com player
http://6xq.net/0017
Other
4 stars 0 forks source link

Song titles and artists with forward slashes #1

Closed wesdotcool closed 13 years ago

wesdotcool commented 13 years ago

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 "/"

wesdotcool commented 13 years ago

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.