2

我正在尝试将嵌入 Word 文档中的 Excel 文档提取为 OLE,但它失败了。

我需要将它放在服务器端脚本中,因此需要控制台或脚本。并且自动化开放式办公室非常耗资源..

是否有任何工具或库可以做到这一点?请帮忙..

4

1 回答 1

2

我构建了一个 python 模块来完成这个检查在这里。https://pypi.org/project/AttachmentsExtractor/该模块也可以在 Linux 操作系统上运行。

安装库后使用以下代码片段:

 from AttachmentsExtractor import extractor
 abs_path_to_file='Please provide absolute path here '
 path_to_destination_directory = 'Please provide path of the directory where the extracted attachments should be stored'
 extractor.extract(abs_path_to_file,path_to_destination_directory) # returns true if one or more attachments are found else returns false.
于 2020-10-26T09:26:32.217 回答