当前文件的路径取决于我如何执行程序

这是我的Python程序:

#!/usr/bin/env python

import os

BASE_PATH = os.path.dirname(__file__)
print BASE_PATH

如果我使用python myfile.py运行它,它会打印一个空字符串。 如果我使用myfile.py运行它,它将打印正确的路径。 为什么是这样? 我使用的是Windows Vista和Python 2.6.2。


这只是一个无害的窗口怪癖; 您可以使用os.path.abspath(__file__)进行补偿,请参阅文档


os.path.normpath(os.path.join(os.getcwd(),os.path.dirname(__file__)))

在许多情况下,最好使用:

os.path.dirname(sys.argv[0])
链接地址: http://www.djcxy.com/p/54695.html

上一篇: Path to current file depends on how I execute the program

下一篇: Find path to currently running file