Python tools for various use cases
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MyPyTools/fileextensionstats.py

16 lines
437 B

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)