pyCharm获取当前文件的绝对路径

#获取当前项目绝对路径
import os    #需要用到os包
def __get_procwd(proname):
    path =os.getcwd()
    print(path)
    #path[0:path.find(proname)]截取项目路径的根目录
    cwd = path[:path.find(proname)]+proname
    return cwd

#全局变量 当前项目根目录绝对路径
root_path=__get_procwd("当前项目文件名")

if __name__ == '__main__':
    print(root_path)   #打印当前当前项目所在的绝对路径

你可能感兴趣的:(python)