blob: 8e342c91bb21436abc591af6c94dbbc24887ec90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
"""Procedures that operate on files/ directories"""
import hashlib
import os
from functools import partial
def get_dir_hash(directory: str) -> str:
"""Return the hash of a DIRECTORY"""
md5hash = hashlib.md5()
if not os.path.exists(directory):
raise FileNotFoundError
for root, _, files in os.walk(directory):
for names in files:
file_path = os.path.join(root, names)
with open(file_path, "rb") as file_:
for buf in iter(partial(file_.read, 4096), b''):
md5hash.update(bytearray(hashlib.md5(buf).hexdigest(),
"utf-8"))
return md5hash.hexdigest()
|