> i want to add a pyton script in a folder. this script should generate new > folders with the id range from "a" to "z". > any solutions? for i in range(0, 26): id = chr(ord('a')+i) container.manage_addFolder(id) Florent Guillaume Nuxeo