Search found 1 match

Go to advanced search

by SkySkimmer
20 Oct 2014 23:31
Forum: VLC media player Feature Requests
Topic: Auto expand folders to allow dynamic multi-folder lists
Replies: 2
Views: 992

Re: Auto expand folders to allow dynamic multi-folder lists

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...

Go to advanced search