MAPI:迭代邮箱中所有文件夹和项目的最有效方法
我正在尝试对交换邮箱内的项目建立索引,因此:使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您打算如何处理这些物品?如果您只想阅读一些属性,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.