gpt4 book ai didi

python - 如何在python中打开mac osx上的文件

转载 作者:行者123 更新时间:2023-12-05 08:58:55 28 4
gpt4 key购买 nike

我正在尝试使用 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 上的桌面位置

最佳答案

使用open (1)命令。

import subprocess
FileName = "/Users/fis/Desktop/installation_guide.txt"
subprocess.call(['open', FileName])

关于python - 如何在python中打开mac osx上的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19297914/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com