练习用python写一个计算文件夹总大小的程序
Posted uuuuuuuuuuuuuuuu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习用python写一个计算文件夹总大小的程序相关的知识,希望对你有一定的参考价值。
import os
size=0
filename=‘输入你的文件夹绝对路径‘
for g in os.walk(filename):
path, dir_list, name_list=g
for name in name_list:
abs_path=os.path.join(path,name)
size+=os.path.getsize(abs_path)
print(‘文件总大小:%s‘%size)
以上是关于练习用python写一个计算文件夹总大小的程序的主要内容,如果未能解决你的问题,请参考以下文章
C# 练习用函数递归计算 f(n)=f(n-1)+f(n-2) f=2 f=3
C# 练习用函数递归计算 f(n)=f(n-1)+f(n-2) f=2 f=3