I have a folder in the Root Folder of a message store that I am trying to clear using EmptyFolder(). The code is as follows:
folder = store.OpenEntry(eid, None, MOD_FLAG) hr = folder.EmptyFolder(0, None, 0) I get the error: ' Error: unsupported operand type(s) for &: 'NoneType' and 'int' Changing the code to folder = store.OpenEntry(eid, None, MOD_FLAG) hr = folder.EmptyFolder(0, 0, 0) I get the following exception: "Error: The Python instance can not be converted to a COM object" This is a command line tool, and I do not need the progress of the operation. Can someone tell me what is the correct way to invoke EmptyFolder()? Thanks, Sriram
_______________________________________________ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32