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()
示例:遍历/usr/local目录及子下所有文件和目录,并组装出每个文件完整的路径名
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.split('/usr/local/a.txt')
# 得到一个[路径,文件名]的列表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.system("jmeter -n -t /usr/local/demo.jmx")
# 无法获取屏幕输出的信息,相要获取运行屏幕信息,可以使用subprocess
作者: 韩志超
更多关于python的相关知识,请关注python客栈
以上就是Python中常用的os操作汇总的详细内容,更多关于python os操作的资料请关注python博客其它相关文章!
Powered By python教程网 鲁ICP备18013710号
python博客 - 小白学python最友好的网站!