in reply to Re: and this or that
in thread and this or that
opendir(PWD,"$next") && my @files = readdir PWD or die "Open \"$_\" failed: $!";
First, you waste future readers' time. The few seconds you've saved by writing the above rather than
Have just eclipsed by N x "what's this? uh.. oh, I see". Better, in my humble opinion, to write straightforward code. Sure, you have code "or die" twice, but in the scheme of things, that's a really minor nit.opendir(PWD,$name) or die "$name: $!"; my @files = readdir(PWD) or die "$name: $!";
Second, in the unikely event that opendir() succeeds and readdir() fails, you're presenting a misleading diagnostic.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: and this or that
by MeowChow (Vicar) on Feb 06, 2001 at 01:53 UTC | |
by dws (Chancellor) on Feb 06, 2001 at 02:12 UTC |