[Zope] newbie: add script(python)

Florent Guillaume fg@nuxeo.com
21 Aug 2001 20:32:06 GMT


> 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