Python中如何获取文件系统的使用率

Python中如何获取文件系统的使用率,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

from subprocess import Popen, PIPE

Python中如何获取文件系统的使用率

# 执行操作系统命令并返回执行结果

def exec_shell(shell_cmd): process = Popen(shell_cmd, shell=True, stdout=PIPE, stderr=PIPE) stdout, stderr = process.communicate() return stdout, stderr

# 获取磁盘使用率

# 参数 target_path: 待检测挂载点,如果指定了该参数则只检测该挂载点,否则检测所有本地文件系统

def get_disk_space_usage(target_path=''): data = [] cmd = 'df -lm' # Local FileSystem only if target_path.strip() != '': if os.path.exists(target_path): cmd = 'df -m '+target_path.strip() res = exec_shell(cmd)[0] res_lines = res.split(os.linesep) del res_lines[0] # delete line header for line in res_lines: if '%' in line: line_tmp = re.split( r'\s+|\t', line.strip() ) if '%' in line_tmp[-2] and '/' in line_tmp[-1]: line_data = {} line_data['total_mb'] = int( line_tmp[-5].strip() ) line_data['used_mb'] = int( line_tmp[-4].strip() ) line_data['free_mb'] = int( line_tmp[-3].strip() ) line_data['used_pct'] = int( line_tmp[-2].strip().strip('%') ) line_data['free_pct'] = 100 - line_data['used_pct'] line_data['mount_point'] = line_tmp[-1].strip() data.append(line_data) return data

# 调用函数res = get_disk_space_usage()

关于Python中如何获取文件系统的使用率问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。

发布于 2021-07-29 21:59:45
收藏
分享
海报
0 条评论
191
上一篇:PHP中怎么获取当前相对于域名目录 下一篇:AJPFX中怎么通过索引获取最大值
目录

    推荐阅读

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码