Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: greater efficiency required (ls, glob, or readdir?)

by JavaFan (Canon)
on Aug 27, 2008 at 18:22 UTC ( [id://707247]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      my @files = `ls $dir`;
    
  2. or download this
      my @files;
      {
    ...
          @files = grep {!/^\./} readdir $dh;
          closedir $dh;
      }
    
  3. or download this
        my $info = do {local (@ARGV, $/) = $file; <>};  # Cryptic
        
    ...
            $info = <$fh>;
            close $fh;
        }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-19 17:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found