0

在将 configobj 用于 python 时,我遇到了一些路径问题。我想知道是否有办法不在我的帮助文件中使用绝对路径。例如,而不是:

self.config = ConfigObj('/home/thisuser/project/common/config.cfg')

我想使用类似的东西:

self.config = ConfigObj(smartpath+'/project/common/config.cfg')

背景: 我已经将我的配置文件放在一个公共目录中,旁边是一个助手类和一个实用程序类:

common/config.cfg
common/helper.py
common/utility.py

助手类有一个方法可以返回配置部分中的值。代码是这样的:

from configobj import ConfigObj

class myHelper:

    def __init__(self):
        self.config = ConfigObj('/home/thisuser/project/common/config.cfg')

    def send_minion(self, race, weapon):
        minion = self.config[race][weapon]
        return minion

实用程序文件导入帮助文件,实用程序文件由驻留在我项目的不同文件夹中的一堆不同类调用:

from common import myHelper

class myUtility:

    def __init__(self):
        self.minion = myHelper.myHelper()

    def attack_with_minion(self, race, weapon)
        my_minion = self.minion.send_minion(race, weapon)
        #... some common code used by all
        my_minion.login()

以下文件导入实用程序文件并调用该方法:

/home/thisuser/project/folder1/forestCastle.py
/home/thisuser/project/folder2/secondLevel/sandCastle.py
/home/thisuser/project/folder3/somewhere/waterCastle.py

self.common.attack_with_minion("ogre", "club")

如果我不使用绝对路径并且我运行 forestCastle.py 它会在/home/thisuser/project/folder1/中查找配置,我希望它在project/common/中查找它,因为/home/thisuser会改变

4

2 回答 2

0

您可以根据模块文件名计算新的绝对路径:

import os.path
from configobj import ConfigObj

BASE = os.path.dirname(os.path.abspath(__file__))


class myHelper:

    def __init__(self):
        self.config = ConfigObj(os.path.join(BASE, 'config.cfg'))

__file__当前模块的文件名,所以helper.py应该是/home/thisuser/project/common/helper.py; os.path.abspath()确保它是绝对路径,并os.path.dirname删除/helper.py文件名,为您留下“当前”目录的绝对路径。

于 2013-02-25T16:13:04.163 回答
0

我很难追随你真正想要的东西。但是,要以与操作系统无关的方式扩展主目录的路径,您可以使用os.path.expanduser

self.config = ConfigObj(os.path.expanduser('~/project/common/config.cfg'))
于 2013-02-25T16:13:20.593 回答