deftraverse(path):
db= 0
# 拿到p路径下所有文件和文件夹的名字
fs= os.listdir(path)
for f1 in fs:
# 拼接路径和文件夹的名字,合成一个绝对路径
next_path= os.path.join(path, f1)
if not os.path.isdir(next_path):
db += os.path.getsize(next_path)
else:
ret= traverse(next_path) # 每调用一次会返回一个db
db+= ret
returndb