2

我正在尝试使用 eclipse 在 python 中打开 mac 上的文件。

FileName = "/Users/fis/Desktop/installation_guide.txt"
ss = subprocess.Popen(FileName, shell=True)
ss.communicate()

还有os.popen(FileName). 但是文件没有打开。这些代码在 Windows 中运行良好。但是,我不知道mac有什么问题。我想打开一个文件,就像在 Windows 上双击打开一个文件一样,而不是像读取文件的内容并在控制台中打印一样。文件存在于 Mac 上的桌面位置

4

1 回答 1

8

使用open(1)命令。

import subprocess
FileName = "/Users/fis/Desktop/installation_guide.txt"
subprocess.call(['open', FileName])
于 2013-10-10T14:02:35.443 回答