How to list all the duplicate files present in different folders using perl?

Here are some hints to get you started.

Use opendir and readdir (and closedir) to get a list of files in a folder.
Use a hash to keep track of file names you have seen.
 
Back
Top