python 获取项目根目录
Posted 小溪彼岸
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取项目根目录相关的知识,希望对你有一定的参考价值。
感谢大佬的blog: https://blog.csdn.net/u011012422/article/details/82876038
获取项目根目录方法之一,一会有别的方法再更新
Windows
import os
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = curPath[:curPath.find("myProject\\\\")+len("myProject\\\\")] # 获取myProject,也就是项目的根路径
dataPath = os.path.abspath(rootPath + 'data\\\\train.csv') # 获取tran.csv文件的路径
Mac
import os
curPath = os.path.abspath(os.path.dirname(__file__))
rootPath = curPath[:curPath.find("myProject/")+len("myProject/")] # 获取myProject,也就是项目的根路径
dataPath = os.path.abspath(rootPath + 'data/train.csv') # 获取tran.csv文件的路径
以上是关于python 获取项目根目录的主要内容,如果未能解决你的问题,请参考以下文章