mirror of
https://github.com/kevinveenbirkenbach/duplicate-file-handler.git
synced 2024-11-22 05:51:03 +01:00
Reimplemented by an accident deleted function
This commit is contained in:
parent
e31ee231fa
commit
89e15dd023
12
main.py
12
main.py
@ -38,6 +38,18 @@ def find_duplicates(directories, file_type):
|
|||||||
|
|
||||||
return {file_hash: paths for file_hash, paths in hashes.items() if len(paths) > 1}
|
return {file_hash: paths for file_hash, paths in hashes.items() if len(paths) > 1}
|
||||||
|
|
||||||
|
def handle_file_modification(original_file, duplicate_file, modification):
|
||||||
|
if modification == 'delete':
|
||||||
|
print(f"Deleting {duplicate_file}")
|
||||||
|
os.remove(duplicate_file)
|
||||||
|
elif modification == 'hardlink':
|
||||||
|
os.remove(duplicate_file)
|
||||||
|
os.link(original_file, duplicate_file)
|
||||||
|
print(f"Replaced {duplicate_file} with a hardlink to {original_file}")
|
||||||
|
elif modification == 'symlink':
|
||||||
|
os.remove(duplicate_file)
|
||||||
|
os.symlink(original_file, duplicate_file)
|
||||||
|
print(f"Replaced {duplicate_file} with a symlink to {original_file}")
|
||||||
|
|
||||||
def handle_modification(files, modification, mode, apply_to):
|
def handle_modification(files, modification, mode, apply_to):
|
||||||
original_file = next((f for f in files if not f.startswith(tuple(apply_to))), files[0])
|
original_file = next((f for f in files if not f.startswith(tuple(apply_to))), files[0])
|
||||||
|
Loading…
Reference in New Issue
Block a user