spa
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