INTERACT FORUM
More => Old Versions => Media Center 17 => Topic started by: lise on July 27, 2012, 11:48:40 am
-
For the past 3 hours I've been looking for how to assign folder names to various fields in MC with auto-import.
I've read many complicated suggestions in various threads and have tried modifying the codes to suit my needs but I've failed. I thought perhaps if there was a simple step-by-step instruction it could help me and others.
Say you have files named as follows:
c:\User\Me\Documents\Cooking\Appetizers\Aioli.txt
c:\User\Me\Documents\Woodworking\Sharpening\Sharpen with sandpaper.txt
You set auto-import to look at this path: C:\User\Me\Documents
Question 1.
Now you want to assign a rule that says: Assign the next folder's name (Cooking or Woodworking) as the "Genre" tag. What is the rule?
Question 2.
And say you want to assign a tag, say "subgenre" to the next folder after that (Appetizers, Sharpening). What is the rule to do only this?
Question 3.
What is the rule if you want to do both operations in one shot? (i.e. assign the first folder after Documents to the "Genre" field and the next folder to the "Subgenre" field?)
-
There is currently no mechanism to assign two fields at once, so two rules are necessary.
Probably the easiest way to grab the 4th and 5th directory components is with listitem()
Genre:
listitem([filename], 4, \)
Subgenre:
listitem([filename], 5, \)
-
Probably the easiest way to grab the 4th and 5th directory components is with listitem()
Genre:
listitem([filename], 4, \)
Subgenre:
listitem([filename], 5, \)
That's exactly how I do it. It works great if your path is rigidly defined.
-
Great. Thanks. That's nice and easy. Now to complicate things a little.
What if you want to assign a default genre of "personal" to all your subfolders except for Cooking and Woodworking?
c:\User\Me\Documents\finances\taxes\2012
c:\User\Me\Documents\Gadgets\
c:\User\Me\Documents\Cooking\Appetizers\
c:\User\Me\Documents\Woodworking\Sharpening\
So all folders under Documents get assigned the genre "Personal" except for Cooking and Woodworking, which get the subfolder name as the genre?
-
I would use the built-in OR'ing of regular expressions in this case:
if(regex([filename],
/#c:\\User\\Me\\Documents\\(Cooking|Woodworking)\\#/), [R1], Personal)
[R1] will be either Cooking, or Woodworking, and when not one of those, the RE will fail and the If() will output Personal. This way, you can add additional alternatives easily.
-
Thanks MrC.
Just to be clear, in Field I select Genre and in Value I put:
if(regex([filename], /#c:\\User\\Me\\Documents\\(Cooking|Woodworking)\\#/), [R1], Personal)
This assigns the "Personal" genre to all files except those under Cooking and Woodworking which get assigned the Cooking genre and the Woodworking genre respectively. Yes?
So that if I wanted to also assign the Film genre to all files in c:\User\Me\Documents\Film, I would modify your expression by simply adding |Film next to Woodworking as follows:
if(regex([filename], /#c:\\User\\Me\\Documents\\(Cooking|Woodworking|Film)\\#/), [R1], Personal)
Is that correct?
(is there a space between the very first comma and the "/#c"?)
-
You've got it. The RE matches the path name alternatives, and remembers the portion you want for Genre. If the RE is successful, the remembered component is used in the TRUE part of the If(). When not matched, If()'s FALSE portion is output.
Whitespace after commas in function arguments is ignored. You can add/remove to suite your needs.
-
That is absolutely friggin fantastic! What a great way to achieve what I want (and no doubt it will be beneficial to others as well). Thanks so much for sharing.
The only other thing I can think of at the moment would be the following. I'm repeating myself here just to be very clear for others needing this help.
c:\User\Me\Documents\Cooking\Appetizers\Aioli.txt
c:\User\Me\Documents\Woodworking\Sharpening\Sharpen with sandpaper.txt
Root import folder set to c:\User\Me\Documents
1st subfolder becomes the "genre" field using listitem([filename], 4, \) as the value (e.g., Cooking, Woodworking)
2nd subfolder becomes the "subgenre" field using listitem([filename], 5, \) as the value (e.g., Appetizers, Sharpening).
What if there is no 2nd folder? Must we first construct an if clause such that if the 2nd folder after the root exists use that as the subgenre, otherwise don't assign a subgenre?
-
With your root as c:\User\Me\Documents, you can test that [filename (path)] contains at least 6 components (using 0-based counting):
ifelse(listitem([filename (path)], 5, \), listitem([filename (path)], 5, \))
c:\User\Me\Documents\GENRE\SUBGENRE
0 1 2 3 4 5
If there is no 6th component, then the return is unassigned so nothing would be tagged.
-
You might like FileFolder(...) as well.
It uses a reverse index, so 0 is the last folder, 1 is the parent, 2 is the grandparent, and so on.