您好,登錄后才能下訂單哦!
這篇文章主要介紹“python怎么打印當(dāng)前文件的絕對(duì)路徑并解決打印為空的問(wèn)題”,在日常操作中,相信很多人在python怎么打印當(dāng)前文件的絕對(duì)路徑并解決打印為空的問(wèn)題問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”python怎么打印當(dāng)前文件的絕對(duì)路徑并解決打印為空的問(wèn)題”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
獲取當(dāng)前文件所在路徑主要使用os.path.dirname(os.path.abspath(__file__))
:
import os file_path = os.path.dirname(os.path.abspath(__file__)) print(file_path)
不能使用下面代碼,在有些情況下路徑會(huì)是空
os.path.dirname(__file__)
示例:得到相對(duì)位置的文件路徑
上級(jí)文件夾下的文件,比如config.yaml
文件的路徑可以表示為:os.path.dirname(os.path.abspath(__file__)) + "/../conf/config.yaml"
|_ conf |_ config.yaml |_src |_代碼 # 當(dāng)前位置
1、獲取當(dāng)前文件的絕對(duì)路徑
import os cur_path = os.path.abspath(__file__) print(cur_path)
輸出:E:\python\project\test\path_test.py
2、獲取當(dāng)前文件的所在目錄
import os cur_dir = os.path.dirname(os.path.abspath(__file__)) # 上級(jí)目錄 print(cur_dir)
輸出:E:\python\project\test
3、獲取當(dāng)前文件所在目錄的上一級(jí)目錄
import os cur_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # 上級(jí)目錄 print(cur_dir)
輸出:E:\python\project
4、獲取指定文件的路徑(例如想獲得project文件夾下的test.txt文件路徑)
import os # 法一 cur_dir1 = os.path.dirname(os.path.abspath(__file__)) path2 = os.path.join(os.path.abspath(cur_dir + os.path.sep + ".."), "test.txt") # 法二 cur_dir2 = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) path3 = os.path.join(os.path.dirname(cur_dir), "test.txt") print(path2) print(path3)
輸出:
E:\python\project\test.txt
E:\python\project\test.txt
注意:
只有當(dāng)在腳本中執(zhí)行的時(shí)候,os.path.abspath(file)才會(huì)起作用,因?yàn)樵撁钍谦@取的當(dāng)前執(zhí)行腳本的完整路徑,如果在交互模式或者terminate 終端中運(yùn)行會(huì)報(bào)沒(méi)有__file__這個(gè)錯(cuò)誤。
到此,關(guān)于“python怎么打印當(dāng)前文件的絕對(duì)路徑并解決打印為空的問(wèn)題”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。