Add 'fileextensionstats.py'

This commit is contained in:
2020-04-24 15:55:08 +02:00
parent b286fd6bd9
commit 7e39e22fd5

16
fileextensionstats.py Normal file
View File

@ -0,0 +1,16 @@
import os
from collections import defaultdict
from pprint import pprint
"""
Display the total file size of files in a directory and subdirectories,
grouped by extension.
"""
stats = defaultdict(int)
for (dirpath, _, filenames) in os.walk(r"/put/some/path/here"):
for filename in filenames:
_, extension = os.path.splitext(filename)
stats[extension] += os.path.getsize(os.path.join(dirpath, filename))
pprint(stats)