PdfToWord のように、ユーザーがPDF
をアップロードしてDOC
ファイルを返すことができるページをいくつか見ました。
Pythonまたは任意のUnixコマンドを使用してPDF
ファイルを_DOC/DOCX
_ファイルに変換する方法はありますか?
前もって感謝します
LibreOfficeがインストールされている場合
lowriter --invisible --convert-to doc '/your/file.pdf'
Python for this this:
import os
import subprocess
for 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)