9 Sep
2005
9 Sep
'05
5:54 p.m.
Martin Koekenberg wrote at 2005-9-9 17:48 +0200:
... In a python script I use teh following line to create a folder:
context.manage_addProduct['OFSP'].manage_addFolder(Unique, title=field_titel)
Unique is a unique ID.
How can I create to folder is this folder in the same script ?
You fetch the newly created object with: newly_created_object = getattr(context, Unique) and apply the same procedure as above for "newly_created_object" in place of "context". -- Dieter