将PDF转换为DOC(PythonBash)

将PDF转换为DOC(PythonBash),第1张

将PDF转换为DOC(Python / Bash)

如果您安装了LibreOffice

lowriter --invisible --convert-to doc '/your/file.pdf'

如果要为此使用Python:

import osimport subprocessfor top, dirs, files in os.walk('/my/pdf/folder'):    for filename in files:        if filename.endswith('.pdf'): abspath = os.path.join(top, filename) subprocess.call('lowriter --invisible --convert-to doc "{}"'      .format(abspath), shell=True)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5644532.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存