Page 1 of 1

Hide subfolder for Virtual Folders

Posted: Tue Jan 26, 2016 3:26 am
by dumpen
Hi. I'm trying to setup a virtual folder structure.
It's mostly working except that I would like to hide some folders.
The structure looks like this

X:
--.Temp
--Breaking Bad
--Sopranos

Z:
--Modern Family

and the VirtualFolders.conf file
[
{
"name":"TV Shows",
"files":["X:\\","Z:\\"]
}
]

What I would like to do is not inlcude the folder named .Temp. I don't want to see it when i browse my media server. Is there any code or command I could add to my VirtualFolders.conf file to hide or ignore that folder?

Re: Hide subfolder for Virtual Folders

Posted: Tue Jan 26, 2016 12:31 pm
by valib
It seems to me that you set the drive not the folders. I f you set only folders you want to share everything will be OK.

Re: Hide subfolder for Virtual Folders

Posted: Wed Jan 27, 2016 5:15 am
by dumpen
Yeah. I set the drive because they only contain folders with tv shows. Apart from the few folders I want to hide.
The alternative would be to add all the tv shows folders manually as children, but adding 30 folders seems a little much if I can just hide 2. I would also have to manually update it if I ever get a new show.

Re: Hide subfolder for Virtual Folders

Posted: Wed Jan 27, 2016 7:35 am
by valib
Try to use some of the methods described here https://github.com/UniversalMediaServer ... d-Security

Re: Hide subfolder for Virtual Folders

Posted: Fri Jan 29, 2016 3:33 am
by dumpen
Thanks.
That kinda works. But for the UMS.deny file it only seems accept one regexpression to block and I have 3 folders. It just seems to ignore all lines after the first one.

I was hoping the just was some easy command to add to the virtualfolder.conf file. for example

[
{
"name":"TV Shows",
"files":["X:\\","Z:\\"]
"ignore":[X:\\.Temp"]
}
]

And then it would just ignore listing that folder.

Re: Hide subfolder for Virtual Folders

Posted: Sun Mar 18, 2018 11:19 pm
by dumpen
bump

Re: Hide subfolder for Virtual Folders

Posted: Sun Mar 18, 2018 11:23 pm
by Nadahar
There is no such functionality. I'd have to reorganize your folder structure instead, so that things you want to hide isn't inside your shared folders.

Re: Hide subfolder for Virtual Folders

Posted: Mon Mar 19, 2018 2:03 am
by dumpen
ok.
Is it possible to add a condtion to UMS so that it ignore folders that start with a ".", for example .Temp

Re: Hide subfolder for Virtual Folders

Posted: Mon Mar 19, 2018 3:05 am
by Nadahar
Almost anything is possible, but somebody has to make it. UMS is open for contributions, reasonable modifications have a good chance of getting merged. Simply make a pull request with the modified code here: https://github.com/UniversalMediaServer ... ediaServer

Re: Hide subfolder for Virtual Folders

Posted: Mon Mar 19, 2018 3:50 am
by dumpen
I would love to add this feature myself. I just don't have very much experience coding. I have no idea which file I even would edit or add to.

Thanks for the replies.