在 C# 中访问 MAPI 文件夹
我有以下 C# 代码,
Microsoft.Office.Interop.Outlook.Application myApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook._NameSpace mapiNameSpace = myApp.GetNamespace("MAPI");
Microsoft.Office.Interop.Outlook.MAPIFolder myInbox = mapiNameSpace.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderInbox);
使用它我可以访问我的收件箱。伟大的!现在我需要访问与收件箱位于同一级别的 CTPend 文件夹。我不知道该怎么做。我不断循环浏览我可以调用的向我发送文件夹的东西,但不允许我选择一个文件夹和指定文件夹的对象,并且没有生成文件夹的方法。帮助。
I have the following C# Code
Microsoft.Office.Interop.Outlook.Application myApp = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook._NameSpace mapiNameSpace = myApp.GetNamespace("MAPI");
Microsoft.Office.Interop.Outlook.MAPIFolder myInbox = mapiNameSpace.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderInbox);
With it I can access my Inbox. Great! Now I need to access the CTPend folder that lives on the same level as the Inbox. I cannot figure out how to do that. I keep cycling through things I can call that send me folders but won't let me pick one and objects that specify a folder, with no method that generates one. Help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
上一层到收件箱文件夹,然后到该文件夹:
或者使用父商店并从该商店的根文件夹开始向下钻取到该文件夹:
Go up one level to the Inbox folder, then to that folder:
or use the parent store and drill down to that folder starting with the root folder of that store: