标签:tca moved 环境变量 case 递归遍历 getenv demo 扩展 listdir
Python自动的os库是和操作系统交互的库,常用的操作包括文件/目录操作,路径操作,环境变量操作和执行系统命令等。
os.getcwd()
os.chdir(‘/usr/local/‘)
os.listdir(‘/usr/local/‘)
os.makedirs(‘/usr/local/tmp‘)
os.removedirs(‘/usr/local/tmp‘)
# 只能删除空目录,递归删除可以使用import shutil;shutil.rmtree(‘/usr/local/tmp‘)
os.remove(‘/usr/local/a.txt‘)
os.walk()
import os
for root, dirs, files in os.walk("/usr/local", topdown=False):
for name in files:
print(‘文件:‘, os.path.join(root, name))
for name in dirs:
print(‘目录:‘, os.path.join(root, name))
__file__
os.path.basename(__file__)
# 不含当前文件名os.path.abspath(__file__)
# 包含当前文件名os.path.dirname(__file__)
os.path.splitext(‘a.txt‘)
# 得到[‘a‘, ‘.txt‘]os.path.exists(‘/usr/local/a.txt‘)
os.path.isfile(‘/usr/local/a.txt‘)
os.path.isdir(‘/usr/local/a.txt‘)
os.path.join(‘/usr‘, ‘local‘, ‘a.txt‘)
示例:获取项目根路径和报告文件路径
假设项目结构如下
project/
data‘
reports/
report.html
testcases/
config.py
run.py
在run.py中获取项目的路径和report.html的路径
# filename: run.py
import os
base_dir = os.path.dirname(__file__) # __file__是run.py文件,os.path.dirname获取到其所在的目录project即项目根路径
report_file = os.path.join(base_dir, ‘reports‘, ‘report.html‘) # 使用系统路径分隔符(‘\‘)连接项目根目录base_dir和‘reports‘及‘report.html‘得到报告路径
print(report_file)
os.environ.get(‘PATH‘)
或os.getenv(‘PATH‘)
os.environ[‘MYSQL_PWD‘]=‘123456‘
os.system("jmeter -n -t /usr/local/demo.jmx")
# 无法获取屏幕输出的信息,相要获取运行屏幕信息,可以使用subprocess标签:tca moved 环境变量 case 递归遍历 getenv demo 扩展 listdir
原文地址:https://www.cnblogs.com/superhin/p/13880748.html