How to find the list of files in Perl like the UNIX find command? The answer is File::Find CPAN module. Let us see in this article how to use the File::Find module.
File::Find:
File::Find module contains 2 modules: find and finddepth. Both are used to find the files, the difference being the order in which the files and directories are parsed. find has all the options like the Unix find command.