Can I "hide" a folder?
#16
Hello,

I'd like to hide lyrics folder (created by cu lrc lyrics) in each audio folder.

<regexp>[-\._ ](lyrics)[-\._ ]</regexp>
or
<regexp>(lyrics)</regexp>
does not work.

Writing the full path as below example
<regexp>(/run/media/user/Donnees/music/A/Ange/lyrics)</regexp>
does work.
But So many folders ...
Reply
#17
Just a thought...

<regexp>[-\._ ](lyrics)</regexp>

It's possible your first example is looking for something (anything) after <lyrics>. IYSWIM.
Just a guess, I have no idea how this is coded.
Reply
#18
(2017-02-12, 13:46)trogggy Wrote: Just a thought...

<regexp>[-\._ ](lyrics)</regexp>

It's possible your first example is looking for something (anything) after <lyrics>. IYSWIM.
Just a guess, I have no idea how this is coded.

I tried, and ... No, lyrics folder is still displayed, but thanks for the idea !
Reply
#19
Works for me:

<?xml version="1.0" encoding="utf-8"?>
<advancedsettings>
<audio>
<excludefromlisting>
<regexp>lyrics</regexp>
</excludefromlisting>
</audio>
</advancedsettings>
Reply

Logout Mark Read Team Forum Stats Members Help
Can I "hide" a folder?0