Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: installing modules

by RMGir (Prior)
on Apr 14, 2002 at 01:20 UTC ( [id://158876]=note: print w/replies, xml ) Need Help??


in reply to installing modules

Another problem that the others did not mention is that readdir will return file NAMES, not full paths.

If you do:

my $dir='h:\test'; opendir(DIR, $dir) || die "Unable to open directory: $!"; my @file_names = grep {-f $_} map "$dir\\$_",readdir(DIR); closedir(DIR);
you'll wind up with a list in @file_names of the full paths of the files, and ONLY the files, in that directory.

You could also add a grep on /mp3/i in that list to make sure you only get the mp3 files, since those are what you're looking for...
--
Mike

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-19 00:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found