os路徑拼接

2021-09-19 12:21:42 字數 911 閱讀 8033

import os

# 該檔案路徑

project_path = os.path.realpath(__file__)

# print('該檔案的路徑是:{}'.format(project_path))

# 獲取專案的根路徑

root_path = os.path.split(os.path.split(os.path.split(project_path)[0])[0])[0]

# print('獲取到的專案根目錄是:{}'.format(root_path))

# 獲取測試用例的路徑

case_path = os.path.join(root_path,'sport_auto_test','testdata','test_data.xlsx')

# 獲取配置檔案路徑

conf_path = os.path.join(root_path,'sport_auto_test','configfile','case.conf')

# 獲取html測試報告路徑

htmlreport_path = os.path.join(root_path,'sport_auto_test','report','testreport','testreport.html')

# 獲取日誌檔案路徑

log_path = os.path.join(root_path,'sport_auto_test','report','logs','testapi.log')

# print(log_path)

# 獲取mysql配置檔案路徑

db_path = os.path.join(root_path,'sport_auto_test','configfile','db.conf')

# print(db_path)

os模組關於路徑

os模組關於路徑的幾個主要方法 os.path 模組路徑訪問函式 os.path.basename 去掉目錄路徑,返回檔名 os.path.dirname 去掉檔名,返回目錄路徑 os.path.split 將路徑分為 dirname,basename 元組os.path.join 將目錄路徑和檔案...

os模組關於路徑

os模組關於路徑的幾個主要方法 os.path 模組路徑訪問函式 os.path.basename 去掉目錄路徑,返回檔名 os.path.dirname 去掉檔名,返回目錄路徑 os.path.split 將路徑分為 dirname,basename 元組 os.path.join 將目錄路徑和檔...

os模組 檔案路徑

1.檔案所在絕對路徑 file d program os.path.abspath file d program 注意 os.getcwd 返回當前工作目錄,當工作目錄與檔案實際所在路徑不同時,返回結果與os.path.abspath 返回結果不同2.檔案所在資料夾路徑 os.path.dirnam...