3分钟学会python获取当前运行文件路径的方法

下面是python获取当前运行文件路径的方法

通过 __file__ 获取

os.path.dirname(os.path.realpath(__file__))

通过 getcwd 获取当前路径

 os.getcwd()

其它相关路径

#当前文件路径
print(os.path.realpath(__file__))
#当前文件所在的目录,即父路径
print(os.path.split(os.path.realpath(__file__))[0])
#找到父路径下的其他文件,即同级的其他文件
print(os.path.join(proDir,"config.ini"))

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » 3分钟学会python获取当前运行文件路径的方法