os.path.dirname( __ file __ ) 2018/6/2

Posted ggggggzx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了os.path.dirname( __ file __ ) 2018/6/2相关的知识,希望对你有一定的参考价值。

os.path.dirname( __ file __ ) 2018/6/2

该测试脚本所在的位置:D:\第1层\第2层\第3层\第4层\第5层\test11.py

import os
#该文件所在位置:D:\第1层\第2层\第3层\第4层\第5层\test11.py

path1 = os.path.dirname(__file__)
print(path1)#获取当前运行脚本的绝对路径

path2 = os.path.dirname(os.path.dirname(__file__)) #
print(path2)#获取当前运行脚本的绝对路径(去掉最后一个路径)

path3 = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
print(path3)#获取当前运行脚本的绝对路径(去掉最后2个路径)

path4 = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(__file__))))
print(path4)#获取当前运行脚本的绝对路径(去掉最后3个路径)

path5 = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))))
print(path5)#获取当前运行脚本的绝对路径(去掉最后4个路径)

path6 = os.__file__                  #获取os所在的目录
print(path6)

运行的结果:

C:\Python352\python.exe D:/第1层/第2层/第3层/第4层/第5层/test11.py
D:/第1层/第2层/第3层/第4层/第5层
D:/第1层/第2层/第3层/第4层
D:/第1层/第2层/第3层
D:/第1层/第2层
D:/第1层
C:\Python352\lib\os.py

Process finished with exit code 0
  • 解释:
  • os.path.dirname( __ file__ )返回脚本的路径,但是需要注意一下几点:

1、必须是实际存在的.py文件,如果在命令行执行,则会引发异常NameError: name ‘__ file__‘ is not defined

2、在运行的时候如果输入完整的执行的路径,则返回.py文件的全路径如:

python c:/test/test.py 则返回路径 c:/test ,如果是python test.py 则返回空

3、结合os.path.abspath用,效果会好,如果大家看过一些python架构的代码的话,会发现经常有这样的组合

os.path.dirname(os.path.abspath(__ file__ )), 其中os.path.abspath(__ file__)返回的是.py文件的绝对路径

这就是os.path.dirname(__ file__)的用法,其主要总结起来有:
1、不要已命令行的形式来进行os.path.dirname( file)这种形式来使用这个函数

2、结合os.path.abspath()使用

以上是关于os.path.dirname( __ file __ ) 2018/6/2的主要内容,如果未能解决你的问题,请参考以下文章

os.path.dirname(__file__)

OS用法详解os.path.abspath(__file__)&os.path.dirname()&os.path.basename(__file__)&os.path.joi

os.path.dirname( __ file __ ) 2018/6/2

os.path.dirname(__file__)

python中的os.path.dirname(__file__)的使用

python-基础-os.path.realpath((__file__))os.path.abspath((__file__))os.path.dirname()获取文件根目录