| import hashlib |
| import os |
|
|
| def calculate_sha1(file_path): |
| sha1 = hashlib.sha1() |
| with open(file_path, 'rb') as file: |
| while True: |
| data = file.read(8192) |
| if not data: |
| break |
| sha1.update(data) |
| return sha1.hexdigest().upper() |
|
|
| def find_files_and_calculate_sha1(): |
| current_directory = os.getcwd() |
| extensions = ('.odc') |
| output_file = "sha1_hashes.txt" |
|
|
| with open(output_file, 'w') as out_file: |
| counter = 0 |
| for root, dirs, files in os.walk(current_directory): |
| for file in files: |
| |
| if file.lower().endswith(extensions): |
| file_path = os.path.join(root, file) |
| relative_path = os.path.relpath(file_path, start=current_directory) |
| sha1_hash = calculate_sha1(file_path) |
| out_file.write(f"{relative_path}\t{sha1_hash}\n") |
| counter += 1 |
| print(f"{counter}. Processing: {relative_path}") |
|
|
| print(f"SHA1 hashes written to {output_file}") |
|
|
| |
| find_files_and_calculate_sha1() |
|
|