Python的os.getcwd()
方法和os.path.dirname(os.path.realpath(__file__))
这两种方式到底有什么本质区别?
通过具体的实验来进行解释。
先给出2个目录的结构:
(1)PycharmProjects/pythonLearn/dir/dir2/getRootPath.py
(2)PycharmProjects/pythonLearn/getPath.py
【1】那我们先看看第一个PycharmProjects/pythonLearn/dir/dir2/getRootPath.py,如下代码:
import os def getCurPath1(): cur_path = os.path.dirname(os.path.realpath(__file__)) return cur_path def getCurPath2(): cur_path = os.getcwd() return cur_path print('func1----'+getCurPath1())
print('func2----'+getCurPath2())
我们直接执行该脚本得到的结果如下:
func1----C:\Users\Administrator\PycharmProjects\PythonLearn\dir\dir2func2----C:\Users\Administrator\PycharmProjects\PythonLearn\dir\dir2
并未看出本质区别,获取的都是当前脚本所在的dir2目录。
【2】那我们再看看第二个PycharmProjects/pythonLearn/getPath.py,如下代码:
现在,我们在里面我们引入了PycharmProjects/pythonLearn/dir/dir2/目录下的getRootPath.py模块。
from dir.dir2 import getRootPath path1 = getRootPath.getCurPath1()
path2 = getRootPath.getCurPath2()
直接执行getPath.py文件获取的结果如下:
func1----C:\Users\Administrator\PycharmProjects\PythonLearn\dir\dir2func2----C:\Users\Administrator\PycharmProjects\PythonLearn
这个时候,你有没有发现有什么不同,这里的func1就是os.path.dirname(os.path.realname(__file__))
获取的__file__
所在脚本的路径,也就是getRootPath.py的路径。
而os.getcwd()
获取的当前最外层调用的脚本路径,即getPath所在的目录也可描述为起始的执行目录,A调用B,起始的是A,那么获取的就是A所在的目录路径。
方法补充说明:
os.path.dirname()
:去掉脚本的文件名,返回目录。
os.path.dirname(os,path.realname(__file__))
:指的是,获得你刚才所引用的模块 所在的绝对路径,__file__
为内置属性。
来源:https://blog.csdn.net/cyjs1988/article/details/77839238