View Single Post
Posts: 2,829 | Thanked: 1,459 times | Joined on Dec 2009 @ Finland
#52
Originally Posted by j.s View Post
That is overkill.
Code:
ls *.mp3 > playlistname.m3u
That's nice.

I would like to list mp3 also in subdirectories. I managed to to do it with this:
Code:
ls -R | grep mp3 | sort > playlistname.m3u
But I need list with realtive folder names or full folder names. Which one btw. works with default mediaplayer? And files should be sorted by mp3 file name, not by directory name.

.edit
Maybe with find?