91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Python怎么獲取項目的根路徑

發布時間:2021-03-11 17:18:37 來源:億速云 閱讀:930 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關使用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怎么獲取項目的根路徑,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沈阳市| 赣榆县| 军事| 怀来县| 神农架林区| 自贡市| 丰镇市| 准格尔旗| 浮梁县| 卢氏县| 焦作市| 怀远县| 祁门县| 衡水市| 云南省| 百色市| 南丰县| 中宁县| 鄱阳县| 闻喜县| 乐业县| 昌图县| 巫溪县| 太仆寺旗| 左贡县| 星子县| 福鼎市| 合川市| 府谷县| 马公市| 右玉县| 即墨市| 清流县| 塔河县| 安阳县| 花垣县| 南丰县| 团风县| 佳木斯市| 潍坊市| 万安县|