INTERACT FORUM

More => Old Versions => Media Center 16 (Development Ended) => Topic started by: raul101 on July 06, 2011, 06:26:13 pm

Title: Browse Pictures by folder name
Post by: raul101 on July 06, 2011, 06:26:13 pm
I'm using MC16. How can I make MC to display my Pictures following the folder structure that I already have instead of grouping them by date?
Thanks.
Title: Re: Browse Pictures by folder name
Post by: MrC on July 06, 2011, 06:50:59 pm
One way is to use the built-in Explorer under Devices & Drives.

Another, is to create a new Images view that shows the path components.  You can either create an expandable tree in a pane, or create multiple panes, each that shows one deeper path component.

Create a new view under Images.  Add a column, and set the Type to Expression. 

For the tree in a pane, add the expression:

listbuild(1,\,[filename (path)])&datatype=[Filename (path)],2,\)

This breaks the path into components, and leaves just the 3rd component.  Add more columns, increasing the 2 to a 3, etc. for deeper paths.

See the Wiki for Expression language: http://wiki.jriver.com/index.php/Media_Center_expression_language (http://wiki.jriver.com/index.php/Media_Center_expression_language)

More refinement can be done, but start with this to see if this is what you're looking for.[/list]
Title: Re: Browse Pictures by folder name
Post by: raul101 on July 07, 2011, 01:09:53 pm
Thanks for the help. Will report later.