MAPI:迭代邮箱中所有文件夹和项目的最有效方法

发布于 2024-11-06 11:35:32 字数 194 浏览 0 评论 0原文

我正在尝试对交换邮箱内的项目建立索引,因此:使用 MAPI 和/或兑换数据对象 (RDO) 迭代交换邮箱中的所有文件夹和项目的最有效方法是什么?

我知道 RDOFolder.GetAllChildFolders (和 IMAPIContainer::GetHierarchyTable)可以为我提供所有文件夹(可能以最有效的方式),但是文件夹内的项目怎么样?

I'm trying to index items inside an exchange mailbox so: What is the most efficient way to iterate through all the folders and items in an exchange mailbox using MAPI and/or Redemption Data Objects (RDO)?

I know RDOFolder.GetAllChildFolders (and IMAPIContainer::GetHierarchyTable) can give me all the folders (probably in the most efficient way) but what about the items inside the folders?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红衣飘飘貌似仙 2024-11-13 11:35:32

您打算如何处理这些物品?如果您只想阅读一些属性,MAPI 表 (http://www.dimastr.com/ Redemption(我是其作者)中的 redemption/mapitable.htm 是可行的方法,而 RDOFolder.Items.MAPITable.ExecSQL 可能是最容易检索数据。
如果您需要检索大字符串或二进制属性、附件或修改数据,您别无选择,只能单独打开每个项目。

What are you going to do with the items? If you just want to read some properties, MAPI tables (http://www.dimastr.com/redemption/mapitable.htm) in Redemption (I am its author) is the way to go, and RDOFolder.Items.MAPITable.ExecSQL is probably the easiest to retrieve the data.
If you need to retrieve large string or binary properties, attachments, or modify the data, you have no choice but to open each item separately.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文