python 2.3 for windows执行像ghostscript这样的程序的最佳方法是什么,路径中有多个参数和空格?
当然有某种抽象可以实现这一点吗?
这本质上是命令,
cmd = self._ghostscriptPath + 'gswin32c -q -dNOPAUSE -dBATCH -sDEVICE=tiffg4
-r196X204 -sPAPERSIZE=a4 -sOutputFile="' + tifDest + " " + pdfSource + '"'
os.popen(cmd)
这种方式对我来说看起来真的很脏,一定有一些Pythonic的方式
Surely there is some kind of abstraction that allows for this?
This is essentially the command
cmd = self._ghostscriptPath + 'gswin32c -q -dNOPAUSE -dBATCH -sDEVICE=tiffg4
-r196X204 -sPAPERSIZE=a4 -sOutputFile="' + tifDest + " " + pdfSource + '"'
os.popen(cmd)
this way looks really dirty to me, there must be some pythonic way
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 subprocess,它取代了 os.popen,尽管它并不是一个抽象:
如果你只有 python 2.3 没有子进程模块,你仍然可以使用 os.popen
Use subprocess, it superseeds os.popen, though it is not much more of an abstraction:
If you have only python 2.3 which has no subprocess module, you can still use os.popen