我从这里得到了部分答案Construct a tree from list os file paths (Python) - Performance取决于
我的具体问题需要我从
这
dir/file 10
dir/dir2/file2 20
dir/dir2/file3 10
dir/file3 10
dir3/file4 10
dir3/file5 10
到
dir/ **50**
dir2/ **30**
file2
file3
file
file3
dir3/ **20**
file4
file5
基本上最后的数字是文件大小,
我一直在试图弄清楚如何将所有文件的大小显示到父目录
编辑:
r = re.compile(r'(.+\t)(\d+)')
def prettify(d, indent=0):
for key, value in d.iteritems():
ss = 0
if key == FILE_MARKER:
if value:
for each in value:
mm = r.match(each)
ss += int(mm.group(2))
print ' ' * indent + each
***print ' ' * indent + format_size(ss)***
else:
print ' ' * indent + str(key)
if isinstance(value, dict):
addSizes(value, indent+1)
else:
print ' ' * (indent+1) + str(value)
这是我从上面的链接中编辑的 mac 的答案,我使用 regExp
解决方案让我创建了一个新的 dict 或添加了一个内部函数。
我已经失去了一整天,希望我能在当天早些时候寻求帮助。
请帮忙。