VBA or Script to identify files which are duplicate in a folder
i have a very tricky situation with my files.
i have a folder which has duplicates like this, how can i delete one copy of them and delete the other so that there is unique left?
is there any way to do this automatically without manual process?
Anonymizing-Data.xlsm
Anonymizing-Data-wngz.xlsm
Creating-A-Search-Box-40t1.xlsm
Creating A Search Box.xlsm
Contacts List Template.xlsm
Contacts-List-Template.xlsm
VBAMicrosoft ExcelVB ScriptMicrosoft Office
Last Comment
Joe Howard
8/22/2022 - Mon
Rob Henson
I don't have any suggestions as that is not my field but no doubt the question will be asked; how will you determine which file to keep and which to delete?
Thanks
Rob H
Kimputer
VBA could do the trick,
enumerate all files in two loops, compare MD5 hash of the two files. Delete if the same.
To reduce system load, only compare if first x letters of the file name (maybe 3 or 5?) are the same.
However, you will NOT have a choice for the file name (if the shorter file name is prettier, but it's the one in the first loop, you obviously can't delete it).
Thanks
Rob H