Python:检查相对于源代码文件的数据文件是否存在

时间:2014-02-27 22:31:02

标签: python file

我有一个小文本(XML)文件,我希望加载Python函数。文本文件的位置始终位于Python函数代码的固定相对位置。

例如,在我的本地计算机上,文件text.xml和mycode.py可以驻留在:

/a/b/text.xml
/a/c/mycode.py

稍后在运行时,文件可以驻留在:

/mnt/x/b/text.xml
/mnt/x/c/mycode.py

如何确保我可以加载文件?我需要绝对路径吗?我看到我可以使用os.path.isfile,但这假设我有一条路径。

3 个答案:

答案 0 :(得分:2)

您可以按如下方式拨打电话:

import os
BASE_DIR = os.path.dirname(os.path.realpath(__file__))

这将为您提供从mycode.py

调用的python文件的目录

然后访问xml文件就像:

xml_file = "{}/../text.xml".format(BASE_DIR)
fin = open(xml_file, 'r+')

答案 1 :(得分:1)

如果两个目录的父目录始终相同,则应该起作用:

import os
path_to_script = os.path.realpath(__file__)
parent_directory = os.path.dirname(path_to_script)

for root, dirs, files in os.walk(parent_directory):
    for file in files:
        if file == 'text.xml':
            path_to_xml = os.path.join(root, file)

答案 2 :(得分:1)

您可以使用特殊变量__file__,它会为您提供当前文件名(请参阅http://docs.python.org/2/reference/datamodel.html)。

所以在你的第一个例子中,你可以在mycode.py中以这种方式引用text.xml:

xml_path = os.path.join(__file__, '..', '..', 'text.xml')