What dave_the_m wrote is correct, as well as being a great example of using perldoc to read the Perl documentation.  (I use it so much on Linux that I've got "pd" aliased to "perldoc", and "pf" to "perldoc -f").

However, it looks like you are trying to open a directory ("/tmp") rather than a file.   If that's the case, you can still use a filehandle (I like to create it with FileHandle), but you probably want "readdir" rather than "open":

use FileHandle; my $fh = new FileHandle; my $dir = "/tmp"; opendir($fh, $dir) or die "Unable to open directory '$dir' ($!)\n" +; my @files = readdir($fh); closedir $fh;
At the end of this segment of code, the list "@files" will contain the files from the directory "/tmp".  Note that the names will NOT be full pathnames, so if you want that, you'll have to prepend "/tmp" to each member in the list:
map { $_ = "$dir/$_" } @files; # Prepend "/tmp" to all files
Another note -- the directories "." and ".." will also be in the list, and you usually want to skip them for any further processing.

I'll let you try "perldoc -f opendir" and "perldoc -f readdir" if you want to read more about them.


In reply to Re: How to get file descriptor (number) by liverpole
in thread How to get file descriptor (number) by Eyck

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.