INTERACT FORUM

More => Old Versions => Media Center 17 => Topic started by: Blaine78 on November 27, 2011, 02:24:10 am

Title: Folder name
Post by: Blaine78 on November 27, 2011, 02:24:10 am
Is there a way to show only the folder name in a view? i.e. not have full path name, E:\video\simpsons\, just 'simpsons' folder name?
Title: Re: Folder name
Post by: Lasse_Lus on November 27, 2011, 02:32:07 am
this will give you the "last folder"

ListItem([Filename (path)], Math(ListCount([Filename (path)], \) - 1), \)
Title: Re: Folder name
Post by: Blaine78 on November 27, 2011, 02:50:18 am
you are brilliant, thank you :)
Title: Re: Folder name
Post by: Lasse_Lus on November 27, 2011, 02:58:05 am
you are brilliant, thank you :)

nope, marko is
Title: Re: Folder name
Post by: MrC on November 27, 2011, 10:43:01 am
An alternate method, which some find more natural: :-)

   regex([Filename (path)], /#([^\\]+)\\$#/, 1)

It would be nice if ListItem() supplied with a negative index would indicate items from the right, as in:

  ListItem([Filename (path)], -1, \)