0
私はExchangeLibをPythonで使用しています。私の電子メールをAフォルダからBフォルダに移動したかった。Python ExchangeLib:アイテムの移動先フォルダ
# I logined the Exchange Server and took the items as below:
all_items=account.inbox.all()
# then wanted to move the folder as below:
target_folder=account.inbox.get_folder_by_name("TCN")
recentone = all_items[0]
# then I wanted to move the folder to "TCN"
recentone.folder=target_folder;
recentone.save()
しかし、それは動作していませんし、解決策を見つけることができません。 アイテムのフォルダを移動する他の方法はありますか?
ありがとうございます。