如果您安装了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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)