我如何知道'xdg-open'将用于打开目录的程序? (蟒蛇)

时间:2015-08-25 17:14:37

标签: python linux xdgutils

所以我有这个:

def openSegmentDirectory(self):
    if platform.system() == "Windows":
        os.startfile(self.segmentPath)
    elif platform.system() == "Linux":
        subprocess.Popen(['xdg-open', self.segmentPath])
    else:
        #for mac
        os.system('open "%s"' % self.segmentPath)

但是当在linux上使用它时,系统会尝试在firefox中打开目录,这是我不想要的。我怎么能改变这个?

0 个答案:

没有答案