Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Directory Listing

by plaid (Chaplain)
on Jul 29, 2000 at 23:47 UTC ( [id://25110]=note: print w/replies, xml ) Need Help??


in reply to Directory Listing

Your code seems to be able to be fixed somewhat by changing the 'array2' instances in the second loop to just say 'array'. I don't see where array2 is supposed to be coming from.. It's not declared anywhere else in the code.

It seems you're putting too much work into the code. If what you want is a listing of directories, you could do something as simple as

use strict; opendir THISDIR, "." or die "serious dainbramagae: $!"; my $i = 0; my @files = readdir THISDIR; foreach (@files) { print "[", $i++, "] $_\t" if -d $_; } closedir THISDIR;
Or, for a more clean, concise way
use strict; opendir THISDIR, "." or die "serious dainbramagae: $!"; my $i = 0; print map { "[". $i++. "] $_\t" } grep { -d $_ } (readdir THISDIR); closedir THISDIR;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://25110]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-24 12:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found