L lali New member Jul 15, 2010 #1 Hi, I am new to perl. Pls tell me how to list all the duplicate files present in folders using perl script.
Hi, I am new to perl. Pls tell me how to list all the duplicate files present in folders using perl script.
M martinthurn New member Jul 15, 2010 #2 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.
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.