I can iterate over all the mail folder using for item in account.root.get_folders()
and if item.__class__ == exchangelib.folders.Messages:
but how can I get the amount of space used by messages in that folder?
I've read online from that foldersize is a EWS extended property type, but how do I get that via exchangelib? (FYI, the property is PropertyTag: 0x0e08; PropertyType: Integer)