您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關使用Python怎么獲取項目的根路徑,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
工具類代碼如下:
import sys import os class pathutil(object): """路徑處理工具類""" def __init__(self): # 判斷調試模式 debug_vars = dict((a, b) for a, b in os.environ.items() if a.find('IPYTHONENABLE') >= 0) # 根據不同場景獲取根目錄 if len(debug_vars) > 0: """當前為debug運行時""" self.rootPath = sys.path[2] elif getattr(sys, 'frozen', False): """當前為exe運行時""" self.rootPath = os.getcwd() else: """正常執行""" self.rootPath = sys.path[1] # 替換斜杠 self.rootPath = self.rootPath.replace("\\", "/") def getPathFromResources(self, fileName): """按照文件名拼接資源文件路徑""" filePath = "%s/resources/%s" % (self.rootPath, fileName) return filePath PathUtil = pathutil() if __name__ == '__main__': """測試""" # path = PathUtil.getPathFromResources("context.ini") print(PathUtil.rootPath)
知識點擴展:Python獲取當前目錄和上級目錄
獲取當前文件的路徑:
import os print '***獲取當前目錄***' print os.getcwd() print os.path.abspath(os.path.dirname(__file__)) # __file__ 為當前文件, 若果在ide中運行此行會報錯,可改為 #d = path.dirname('.') # 但是改為.后,就是獲得當前目錄,接著使用dirname函數訪問上級目錄 print '***獲取上級目錄***' print os.path.abspath(os.path.dirname(os.path.dirname(__file__))) print os.path.abspath(os.path.dirname(os.getcwd())) print os.path.abspath(os.path.join(os.getcwd(), "..")) print '***獲取上上級目錄***' print os.path.abspath(os.path.join(os.getcwd(), "../.."))
以上就是使用Python怎么獲取項目的根路徑,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。