util/paths.py
branchwxPython4
changeset 3502 a35bf9c585cf
parent 3501 fa291393aac7
child 3750 f62625418bff
equal deleted inserted replaced
3501:fa291393aac7 3502:a35bf9c585cf
    53     """
    53     """
    54     Return folder where to find sibling projects like Modbus, CanFestival, BACnet
    54     Return folder where to find sibling projects like Modbus, CanFestival, BACnet
    55     """
    55     """
    56     return os.path.join(AbsParentDir(__file__, 2), name)
    56     return os.path.join(AbsParentDir(__file__, 2), name)
    57 
    57 
    58 def Bpath(name):
    58 def Bpath(*names):
    59     """
    59     """
    60     Return path of files in Beremiz project
    60     Return path of files in Beremiz project
    61     """
    61     """
    62     return os.path.join(AbsParentDir(__file__, 1), name)
    62     return os.path.join(AbsParentDir(__file__, 1), *names)