将本地 Outlook 联系人导出到 vcard
所有,
我正在尝试编写一个程序,将存储在 Outlook 本地 pst 文件中的所有联系人导出到 vcard
我已经看到了几个共享软件程序可以做到这一点,但它们似乎相当昂贵(50 美元+)
我看到了一个例子在这里,但它似乎更适合交换服务器,而不是 Outlook 的本地安装,
我有什么想法可以解决这个问题吗?
All,
I'm trying to write a program that will export all the contacts stored in the local pst file of outlook to vcards
I have seen several shareware programs that will do it but they seem pretty expensive (50 bucks+)
I have seen an example here but it seems more geared to an exchange server rather than to the local install of outlook
any ideas on how i would go about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能适合。
'格式和反斜杠问题
This may suit.
'Problem with formatting and backslash
下面是在 C# 中执行此操作的更原生方法:
注意: 您需要添加对 Microsoft.Office.Interop.Outlook 的引用
这会将当前 Outlook 配置文件中的所有联系人导出到多个 .VCF 文件。
顺便说一句,您可以将所有 VCF 文件合并为一个:
这样您就可以轻松地将此文件导入到 GMail 或 iPhone。
Here is more native way to do it in C#:
NOTE: You need to add reference to Microsoft.Office.Interop.Outlook
This will export all contacts in the current Outlook profile to multiple .VCF files.
BTW you can combine all VCF files in one:
This way you can easily import this file to GMail or IPhone.