1 import os 2 3 linux下 4 例如: 我如今在 /home/settings.py文件下 5 6 # 獲取當前的絕對路徑 7 os.path.abspath(__file__) # 獲取的內容 /home/settings.py 8 # 獲取當前路徑的上一級目錄 9 os.path.dirname(os.path.abspath(__file__)) 10 或 11 os.getcwd() 12 # 獲取的內容 /home
1 例如: 我如今在 F:\Futbin\settings.py文件下 2 3 # 獲取當前的絕對路徑 4 os.path.abspath(__file__) # 獲取的內容 F:\Futbin\settings.py 5 6 # 獲取當前路徑的上一級目錄 7 8 os.path.dirname(os.path.abspath(__file__)) 9 或 10 os.getcwd() 11 # 獲取的內容 F:\Futbin 12 13 或 14 os.path.dirname(__file__) # 只能在windows下這麼用,在linux下打印不出來的 15 #獲取的內容 F:/Futbin