How do I get perl to read the contents of a given directory into an array?
Backticks can do it, but I know there is some method using 'scandir' or a similar term?
|
|
How do I get perl to read the contents of a given directory into an array? Backticks can do it, but I know there is some method using 'scandir' or a similar term?
|
|||
|
|
|
|
EDIT: Oh, sorry, missed the "into an array" part:
EDIT2: Most of the other answers are valid, but I wanted to comment on this answer specifically, in which this solution is offered:
First, to document what it's doing since the poster didn't, it's passing the returned list from readdir() through a grep() that only returns those values that are files (as opposed to dirs, devices, named pipes, etc) and that do not begin with a dot (which makes the list name @dots misleading, but that's due to the change he made when copying it over from the readdir() documentation). Since it limits the contents of the directory it returns I don't think it's technically a correct answer to this question, but it illustrates a common idiom used to filter filenames in perl and I thought it would be valuable to document. Another example seen a lot is:
This snippet reads all contents from the dir handle D except '.' and '..', since those are very rarely desired to be used in the listing. |
|||
|
|
|
|
Unfortunately IO::Dir lacks documentation, so it's a royal pain in the backside to figure out how to get working. What the heck does read() return anyway? It doesn't appear to be a string. Bah, I'm going to have to write my own if I can figure out how to make this one work, but I'd rather get IO::Dir working since it's already made. Hopefully someone will fix the documentation in the near future. |
|||
|
|
|
|
You could use DirHandle:
use DirHandle;
$d = new DirHandle ".";
if (defined $d) {
while (defined($_ = $d->read)) { something($_); }
$d->rewind;
while (defined($_ = $d->read)) { something_else($_); }
undef $d;
}
DirHandle provides an alternative, cleaner interface to the opendir(), closedir(), readdir(), and rewinddir() functions. |
||
|
|
|
|
Similar to the above, but I think the best version is (slightly modified) from "perldoc -f readdir":
|
||
|
|
|
|
A quick and dirty solution is to use glob
|
||
|
|
|
|
IO::Dir is nice and provides a tied hash interface as well. From the perldoc:
So you could do something like: tie %dir, 'IO::Dir', $directory_name; my @dirs = keys %dir; |
||
|
|
|
|
Here's an example of recursing through a directory structure and copying files froma backup script I wrote.
|
||
|
|
|
|
This will do it, in one line (note the '*' wildcard at the end)
|
||
|