Program Overview
The main idea of the program you’re about to built is that , in many situations you find yourself having duplicates files on your disk and checking hem manually it tedious work since you could have saved different name .

By realizing that we are going to built a Python file to recursively remove all duplicate files in a given directory.

How do we do it ?
If we were to read the whole file and then compare it to the rest of the files recursively through given directory it will take a very long time then how do we do it ?

The answer is hashing , through hashing we can generate a given string of letters and numbers which act as identity of a given file and if we find any other file with the same identity we gonna delete it .

#projects #tutorial #hashing #hashlib #python tricks

Save your disk space with Python
1.10 GEEK