We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7673794 commit 3b6274bCopy full SHA for 3b6274b
src/top_big_files.py
@@ -0,0 +1,7 @@
1
+from collections import defaultdict
2
+d = defaultdict(list)
3
+for root, dirs, files in os.walk('E:\guozhen3\08LOL\JDLOL\fengbi\jdlol'):
4
+ for file in files:
5
+ abs_path_file = os.path.join(root, file)
6
+ file_size = os.path.getsize(abs_path_file)
7
+ d[abs_path_file].append(file_size)
0 commit comments