我的应用程序将PDF打印到一个临时文件。如何使用Python中的默认应用程序打开该文件?
我需要一个解决方案
os.startfile暂时仅适用于Windows,但是xdg- open将在运行X的任何UNIX客户端上可用。
if sys.platform == 'linux2': subprocess.call(["xdg-open", file]) else: os.startfile(file)