1. 程式人生 > >python獲取工程路徑下的文件方法

python獲取工程路徑下的文件方法

路徑 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獲取工程路徑下的文件方法