二 python 獲取路徑

2021-10-11 20:50:47 字數 466 閱讀 5607

1:獲取本地**檔案全路徑:

import os 

ab_path=os.path.abspath(__file__)

2:獲取此檔案所在的目錄(不包括)執行程式的**檔案名字,而到其上層目錄

import os

ab_path=os.path.abspath(__file__)

father_dir=os.path.dirname(ab_path)

3:獲取上層目錄(所在目錄的上一級目錄)

import os 

ab_path=os.path.abspath(__file__)

father_dir=os.path.dirname(ab_path)

os.path.abspath(os.path.join(father_dir, ".."))

python 獲取路徑方法

coding utf8 import os realpath 獲得的是該方法所在的指令碼的路徑 def getpath realpath 獲取當前檔案位置 file os.path.realpath file print file file 獲取當前執行指令碼的絕對路徑。filepath os.pa...

python獲取檔案路徑

一 獲取當前路徑 1 使用sys.ar 0 import sys print sys.ar 0 輸出 本地路徑 2 os模組複製 import os print os.getcwd 獲取當前工作目錄路徑 print os.path.abspath 獲取當前工作目錄路徑 print os.path.a...

python 獲取檔案路徑

print 獲取當前檔案路徑 os.path.realpath file 獲取當前檔案路徑 parent os.path.dirname os.path.realpath file print 獲取其父目錄 parent 從當前檔案路徑中獲取目錄 garder os.path.dirname par...