Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Help Me Please!

by c-era (Curate)
on Aug 06, 2001 at 18:20 UTC ( [id://102462]=note: print w/replies, xml ) Need Help??


in reply to How to read contents of directory into an array?

You should lookup the functions opendir and readdir. Here is an example:
my @files; opendir (DIR,"my/dir") || die $!; @files = readdir (DIR); closedir (DIR) || die $!;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (1)
As of 2024-04-25 01:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found