python獲取工程路徑下的文件方法
阿新 • • 發佈:2019-03-31
路徑 port 目錄 jmeter -o roc image fff 文件 如下可以獲取工程路徑與文件存放的位置
import time, os, random import subprocess import re PATH = lambda p: os.path.abspath(os.path.join(os.path.dirname(__file__), p)) # 獲取當前文件所在的路徑 cur_path = os.path.dirname(os.path.realpath(__file__)) print(cur_path) # 獲取工程所在的路徑,如果加入目錄名字切換到該目錄下 config_path = os.path.join(os.path.dirname(cur_path), ‘cofig‘) print(config_path) jme = locatpath = PATH(config_path + r‘\jmeterconfig.py‘) if not os.path.exists(jme): print("不存在!") else: print("存在!!")
python獲取工程路徑下的文件方法