23 lines
512 B
Python
23 lines
512 B
Python
#!/usr/bin/env python
|
|
|
|
# Duplicate Check
|
|
# Version: 0.11.0
|
|
|
|
# Copyright 2025 Jake Winters
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
|
import os
|
|
import hashlib
|
|
import argparse
|
|
|
|
|
|
parser = argparse.ArgumentParser(description='Scan directory for duplicate files and delete them.')
|
|
|
|
|
|
def hash_file(file_path):
|
|
sha256_hash = hashlib.sha256()
|
|
with open(file_path, 'rb') as f:
|
|
for byte_block in iter(lambda: f.read(65536), b''):
|
|
sha256_hash.update(byte_block)
|
|
return sha256_hash.hexdigest() |