Re: Create a list of files in a directory (recursively)
[email protected] (Rob Dixon)
| Newsgroups | perl.beginners |
|---|---|
| Message-ID | <[email protected]> |
moroshko wrote: > > What is the most efficient way to get a list of all file names (a full > path) in a certain directory ? > This should work recursively and include only files (not directories). The canonical method is to use File::Find as John has described. Rob