0

我有一些位于不同目录中的 pdf 文件的完整路径,我想在一个窗口中显示这些文件,用户可以在其中单击并通过文档查看器打开它们。

由于我是 python 和 QtGUI 的新手,我无法弄清楚如何做到这一点。这是我见过的东西,但无法弄清楚它是如何发生的。当我运行它时,显示文件夹层次结构,但我只想显示我有完整路径的文件。

提前致谢。

4

1 回答 1

1

这段代码对我有用

import subprocess
import os
import sys
files = ['/home/test/kelvin/refresh.html','/home/test/kelvin/thread.html']
print list(enumerate(files))
no=raw_input("enter the file no\n")
no1 = int(no)
if sys.platform == 'linux2':
    subprocess.call(["xdg-open", files[no1]])
else
    os.startfile(files[no1])
于 2013-02-21T07:56:24.200 回答