You can work around this using symbolic links: mkdir -p ~/Links/Music/ cd ~/Links/Music/ for i in $folders_to_include; do ln -s $i; done Then your playlist should contain ~/Links/Music/ as a non expanded directory, so instead of expanding a bunch of folders you just do it for this one. (google symbo...