您的当前位置:首页正文

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

2024-07-18 来源:客趣旅游网

下面是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"))
Top