您好,登錄后才能下訂單哦!
小編給大家分享一下解決python目錄名無效錯誤的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
python目錄名無效錯誤的解決方法是:1、利用os.getcwd()獲取當前文件路徑path;2、檢查傳入的path是否為當前目錄位置;3、若不是,將獲取的path替換即可。
解決方案:
這個目錄名無效困擾我很久,明明目錄路徑沒問題啊,文件也有,為什么報錯呢?
原來這個問題是因為只需要path信息,不要寫到文件。
print(“獲取當前文件路徑——” + os.path.realpath(file)) # 獲取當前文件路徑 parent = os.path.dirname(os.path.realpath(file)) print(“獲取其父目錄——” + parent) # 從當前文件路徑中獲取目錄 garder = os.path.dirname(parent) print(“獲取父目錄的父目錄——” + garder) print(“獲取文件名” + os.path.basename(os.path.realpath(file))) # 獲取文件名
當前文件的路徑
pwd = os.getcwd() print(“當前運行文件路徑” + pwd)
當前文件的父路徑
father_path = os.path.abspath(os.path.dirname(pwd) + os.path.sep + “.”) print(“運行文件父路徑” + father_path)
當前文件的前兩級目錄
grader_father = os.path.abspath(os.path.dirname(pwd) + os.path.sep + “…”) print(“運行文件父路徑的父路徑” + grader_father)
看完了這篇文章,相信你對解決python目錄名無效錯誤的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。