参数" - outdir"不能通过pythons subprocess.call识别,但在终端中工作

时间:2016-06-21 11:06:37

标签: python bash subprocess libreoffice soffice

我想编写一个python脚本来自动将libreoffice ott模板转换为普通的odt文件。 如果我去终端(bash shell)并输入:

soffice --headless --convert-to odt "/path/template.ott" --outdir '/targetpath/template.odt'

输出符合预期,是新目标位置的odt文件。

当我编写脚本时(如此:

oldfile
outdir = pipes.quote(/targetpath/template.odt)
subprocess.call(['soffice --headless --convert-to odt /path/template.ott --outdir /pathtarget/template.odt'])

输出给了我

[Errno 2] No such file or directory

当我尝试这样打电话时:

subprocess.call(["soffice", "--headless", "--convert-to", "odt", pipes.quote(oldpath),outdir])

结果是soffice的帮助文本,原因是:

    LibreOffice 4.2.8.2 420m0(Build:2)

    Unknown option: --outdir /targetpath/template.odt
...

1 个答案:

答案 0 :(得分:-1)

为什么不尝试使用os.system?

os.system('soffice --headless --convert-to odt "/path/template.ott" --outdir "/targetpath/template.odt"')