This question is a spin-off from this one. Some history: when I first learned Perl, I pretty much always used glob
rather than opendir
+ readdir
because I found it easier. Then later various posts and readings suggested that glob
was bad, and so now I pretty much always use readdir
.
After thinking over this recent question I realized that my reasons for one or the other choice may be bunk. So, I'm going to lay out some pros and cons, and I'm hoping that more experienced Perl folks can chime in and clarify. The question in a nutshell is are there compelling reasons to prefer glob
to readdir
or readdir
to glob
(in some or all cases)?
glob
pros:glob
versus readdir
is no contest if we're judging by names alone)(From ysth's answer; cf. glob
cons 4 below) Can return non-existent filenames:
@deck = glob "{A,K,Q,J,10,9,8,7,6,5,4,3,2}{\x{2660},\x{2665},\x{2666},\x{2663}}";
glob
cons:stat
each time (i.e., useless use of stat
in most cases).(From brian's answer) Can return filenames that don't exist:
$ perl -le 'print glob "{ab}{cd}"'
readdir
pros:opendir
returns a filehandle which you can pass around in your program (and reuse), but glob
simply returns a listreaddir
is a proper iterator and provides functions to rewinddir
, seekdir
, telldir
glob
's features from above. I'm not really worried about this level of optimization anyhow, but it's a theoretical pro.)glob
?0
(a con also - see Brad's answer)readdir
cons:grep
out the .
and ..
items, you will get bit when you count items, or try to walk recursively down the file tree or...readdir
returns items in alphabetical order, case insensitive. On a Debian box and an OpenBSD server, the order is utterly random. I tested the Mac with Apple's built-in Perl (5.8.8) and my own compiled 5.10.1. The Debian box is 5.10.0, as is the OpenBSD machine. I wonder if this is a filesystem issue, rather than Perl? 0
(see pros also - see Brad's answer)You missed the most important, biggest difference between them: glob
gives you back a list, but opendir
gives you a directory handle. You can pass that directory handle around to let other objects or subroutines use it. With the directory handle, the subroutine or object doesn't have to know anything about where it came from, who else is using it, and so on:
sub use_any_dir_handle {
my( $dh ) = @_;
rewinddir $dh;
...do some filtering...
return \@files;
}
With the dirhandle, you have a controllable iterator where you can move around with seekdir
, although with glob
you just get the next item.
As with anything though, the costs and benefits only make sense when applied to a certain context. They do not exist outside of a particular use. You have an excellent list of their differences, but I wouldn't classify those differences without knowing what you were trying to do with them.
Some other things to remember:
You can implement your own glob with opendir
, but not the other way around.
glob uses its own wildcard syntax, and that's all you get.
glob can return filenames that don't exist:
$ perl -le 'print glob "{ab}{cd}"'