1. 程式人生 > >os.path.dirname( __ file __ ) 2018/6/2

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

finish os.path 命令 IT import ror 文件的 解釋 進行

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