您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)python如何獲取當(dāng)前文件路徑以及父文件路徑的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
Python是一種跨平臺(tái)的、具有解釋性、編譯性、互動(dòng)性和面向?qū)ο蟮哪_本語言,其最初的設(shè)計(jì)是用于編寫自動(dòng)化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發(fā)獨(dú)立的項(xiàng)目和大型項(xiàng)目。
#當(dāng)前文件的路徑 pwd = os.getcwd() #當(dāng)前文件的父路徑 father_path=os.path.abspath(os.path.dirname(pwd)+os.path.sep+".") #當(dāng)前文件的前兩級目錄 grader_father=os.path.abspath(os.path.dirname(pwd)+os.path.sep+"..")
追加部分代碼實(shí)例
def TestPrtPwd(self): print("獲取當(dāng)前文件路徑——" + os.path.realpath(__file__)) # 獲取當(dāng)前文件路徑 parent = os.path.dirname(os.path.realpath(__file__)) print("獲取其父目錄——" + parent) # 從當(dāng)前文件路徑中獲取目錄 garder = os.path.dirname(parent) print("獲取父目錄的父目錄——" + garder) print("獲取文件名" + os.path.basename(os.path.realpath(__file__))) # 獲取文件名 # 當(dāng)前文件的路徑 pwd = os.getcwd() print("當(dāng)前運(yùn)行文件路徑" + pwd) # 當(dāng)前文件的父路徑 father_path = os.path.abspath(os.path.dirname(pwd) + os.path.sep + ".") print("運(yùn)行文件父路徑" + father_path) # 當(dāng)前文件的前兩級目錄 grader_father = os.path.abspath(os.path.dirname(pwd) + os.path.sep + "..") print("運(yùn)行文件父路徑的父路徑" + grader_father) return garder
運(yùn)行結(jié)果:
獲取當(dāng)前文件路徑——D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData\common\redConfig.py 獲取其父目錄——D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData\common 獲取父目錄的父目錄——D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData 獲取文件名redConfig.py 當(dāng)前運(yùn)行文件路徑D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData\TestSuite\RoleManagement 運(yùn)行文件父路徑D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData\TestSuite 運(yùn)行文件父路徑的父路徑D:\SVN\測試\autotest\functionalAutomation\aonr_sxsj\AuditData
關(guān)于“python如何獲取當(dāng)前文件路徑以及父文件路徑的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。