Is there a function in Perl that lists all the files and directories in a directory? I remember that Java has the File.list() to do this? Is there a comparable method in Perl?
|
If you want to get content of given directory, and only it (i.e. no subdirectories), the best way is to use opendir/readdir/closedir:
You can also use:
But in my opinion it is not as good - mostly because glob is quite complex thing (can filter results automatically) and using it to get all elements of directory seems as a too simple task. On the other hand, if you need to get content from all of the directories and subdirectories, there is basically one standard solution:
|
|||
|
|
|
readdir() does that. Check http://perldoc.perl.org/functions/readdir.html
|
|||
|
|
|
Or File::Find
It'll go through subdirectories if they exist. |
|||
|
|
|
this should do it.
|
|||||
|
|
This will list Everything (including sub directories) from the directory you specify, in order, and with the attributes. I have spent days looking for something to do this, and I took parts from this entire discussion, and a little of my own, and put it together. ENJOY!!
|
|||
|
|