我试图使用python模块olefile提取磁盘中msg文件的文本内容。但是得到AttributeError: OleFileIO instance has no attribute 'read'
。试图读取olefile API,但无法获得任何线索。谢谢。
import sys,olefile
x=olefile.OleFileIO('dkd.msg')
print x.read()
最佳答案
尝试
y = x.openstream('WordDocument'); print y.read()
关于python - Python olefile提取正文,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27305221/