create folder in public folder with python
-
Hello,
i tried
import kopano
k = kopano.Server()user = k.user(‘public’)
user.store.subtree.create_folder(‘Test Folder’)
I got
kopano.errors.NotFoundError: no such user: ‘public’
How can i create a folder in public folder ?
Thanks
Thomas
-
Hello,
try to access the public folders via
server = kopano.Server()
store = server.public_store -
Hello.,
it works! fine!
Thanks
Thomas