思路:
1、需要用到libreoffice
库。
2、然后使用python的subprocess执行转化命令。
python代码如下:文章来源:https://www.toymoban.com/news/detail-707888.html
doc_path = './test.doc' # 你的doc原文件
target_format = 'docx' # 转化为docx格式
output_directory = './' # 转化后的docx文件保存到的目录
subprocess.call(
[
"soffice",
"--headless",
"--convert-to",
target_format,
"--outdir",
output_directory,
doc_path,
],
)
libreoffice安装
ubuntu下安装:文章来源地址https://www.toymoban.com/news/detail-707888.html
apt-get install libreoffice -y
到了这里,关于【python】linux系统下doc转docx文件的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!