INTERACT FORUM
More => Old Versions => JRiver Media Center 21 for Windows => Topic started by: bytestar on May 27, 2016, 08:44:58 pm
-
I need a auto import rule that populates the folder "jazz", "rock", "pop", to the grouping field.
\Music\Jazz
\Music\Rock
\Music\Pop
I have this but the field is not filled out, please help me.
IfElse(IsEqual([Filename (path)], \Classical\,8), Classical, IsEqual([Filename (path)], \Jazz\,8), Jazz, IsEqual([Filename (path)], \Pop\,8), Pop, IsEqual([Filename (path)], \Rock\,8), Rock,1, Must be filled out)
-
You can't use the slashes \jazz\ unless you escape them \\jazz\\
But you should do with just jazz, as isequal(...,8) is a substring search
-
back slashes do not need to be escaped, only forward ones need that, and the 'escape' character is also a forward slash, not a back slash.
bytestar,
There doesn't appear to be anything wrong with your expression construction. I copied it 'as-is' and created an expression based column in a file list, and the values were output as expected.
Can you give more detail about what you want, with perhaps, a screenshot of your auto import configuration? (select the folder in the auto import list, press 'Edit' and screenshot that)
-marko
-
Thanks marko, that's what I get without testing
I concur, my quick test works ok, although in the end of the expression I used
,1,Rock instead of , rock,1
-
Bytestar your expression works for me.
If you are trying to apply the rules to music already in your library make sure you completely remove the files before re-importing:
1 - Remove the file from the library.
2 - Remove them from the deleted items database (search ~d=r in a view filter or smartlist).
Keep in mind any when doing this that any of the music's tags that are in the library only (not embedded) will be lost.
You can test/use expressions by pasting them in the tag window with an "=" before it.
-
Thank you to everyone for your help
I had to remove the files from the library, and re-import it then works.
But I have another problem when I for example, have the following path.
\Music\Rock (80s)
\Music\Rock (70s)
But the Rule expected "Rock" what must i do that it works?
-
I don't know why you are searching with the slashes. Just use
Isequal([filename (path)],Rock,8)
it will work fine with the rock (80's) etc.
-
Thank you
sometimes i do not see the forest for the trees ;D
With the \Rock, I can prevent that evaluates to the file name, but the back slash behind Rock\ is unnecessary, you're right
-
...and here I was getting the Regex() engine all warmed up.
But I see it's unnecessary. :)
Brian.
-
You can also specify the folder level, but no need to get so complex here :)
Certainly no need for regex but it's always fun watching blgentry work!