2013-08-16 79 views
3

我试过一些方法来通过R(BSON)中的MongoDb来阅读Outlook邮件,但由于PST的BSON在R中不可读(因为我使用readBin()),所以我直接尝试通过在R读取它tm.plugin.mail,但得到的错误: -在Outlook中读取Outlook邮件

library(tm.plugin.mail) 
convert_mbox_eml("C:\\Users\\XYZ\\Documents\\Outlook Files\\Outlook Data File - Abc.pst","C:\\tm") 
Warning message: 
In readLines(mbox) : 
incomplete final line found on 'C:\Users\Kuldeep\Documents\Outlook Files\Outlook Data File - Ashish.pst' 

这个库只是插件为TM或我们可以从PST R中读出的邮件,是他们的任何方式在R读出邮件,请尽快帮助我。谢谢。

回答

4

帮助(convert_mbox_eml)说:

Convert E-Mails From mbox Format To eml Format 

你不必MBOX​​格式。你有Outlook PST格式。您可能能够从Outlook以mbox格式导出。或者您可能会找到一个实用程序来执行转换。但是这个包里没有任何东西可以帮助你。

+0

谢谢,你能说我做任何转换的实用工具吗?或者他们有更好的方法来读出R中的pst吗? – Aashu

+0

建议您搜索转换实用程序,或者在合适的论坛上询问(Stack Overflow不是这个地方)。 – Spacedman

+1

http://www.five-ten-sg.com/libpst/声称将.PST转换为mbox – Andrew

相关问题