INTERACT FORUM

More => Old Versions => Media Center 11 (Development Ended) => Topic started by: slipknot on July 22, 2006, 12:01:18 pm

Title: directory naming [A-Z][Artist][Album]
Post by: slipknot on July 22, 2006, 12:01:18 pm
It there a way to have Media Center create a directory for the artist letter, then the artist name and then the album name when ripping and converting files?  I am unable to find a way in the docs to describe a directory naming system like this.
Title: Re: directory naming [A-Z][Artist][Album]
Post by: modelmaker on July 22, 2006, 03:11:16 pm
Go to "Tools>Options>File Location>Directory Rule & File Rule.
Title: Re: directory naming [A-Z][Artist][Album]
Post by: marko on July 22, 2006, 04:09:56 pm
not tested, but, your directory rule should be:

mid([artist])\[artist]\[album]

if that doesn't work, there are other ways...
Title: Re: directory naming [A-Z][Artist][Album]
Post by: slipknot on July 22, 2006, 05:20:28 pm
not tested, but, your directory rule should be:

mid([artist])\[artist]\[album]

if that doesn't work, there are other ways...

Thanks, I'll give it a try and let you know. 

Is mid() documented?  I looked for it in the smartlist area of the docs and I can't find mid().
Title: Re: directory naming [A-Z][Artist][Album]
Post by: slipknot on July 22, 2006, 05:51:50 pm
Marko comes through again!

Thanks, the mid() is working perfectly.

I am trying to learn this program instead of just asking without looking around myself.

But where is mid() documented?  I'll bet whereever it's documented, there's a lot of useful functions I can use if I only knew they existed!
Title: Re: directory naming [A-Z][Artist][Album]
Post by: JimH on July 22, 2006, 06:00:43 pm
See the Media Center Expression Language section on this page:
http://www.jrmediacenter.com/devzone.html
Title: Re: directory naming [A-Z][Artist][Album]
Post by: slipknot on July 22, 2006, 06:21:22 pm
I knew I wanted a substring type function....  Thanks for pointing me to the docs.

Mid(...): Retrieves specified characters from a value.

    Value: the value to get characters from
    Start: the character to start at (optional: defaults to 0)
    Characters: the number of characters to get (-1 returns all) (optional: defaults to 1)

    Examples:
    Mid(Abba)
    Mid(Abba, 0, 2)
    Mid([Artist], 3, -1)