This commit is contained in:
Antonio J. Delgado 2023-01-25 14:42:47 +02:00
parent b817fd2c7e
commit eccebcdc4f

View file

@ -49,7 +49,7 @@ class find_duplicate_files:
with open(file.name, 'r') as file_pointer:
file_content = file_pointer.read()
hash.update(file_content)
files[hash.hexdigest()] = file.name
files[hash.hexdigest()] = file.path
elif file.is_dir(follow_symlinks=False):
more_files = self.recursive_scandir(
file.path,