Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: perl filenames and square brackets

by etcshadow (Priest)
on Nov 18, 2004 at 18:57 UTC ( [id://408855]=note: print w/replies, xml ) Need Help??


in reply to perl filenames and square brackets

All above is correct. While you're better off, overall, changing the whole algorithm to using some File::Find variant, the simplest most direct solution to the problem, is to just replace the glob with an opendir, readdir combo. So, rather than:
$dir .= '*'; my @list = glob($dir);
you could do:
opendir(DIR, $dir) or die $!; my @list = readdir(DIR) or die $!; closedir(DIR) or die $!;
So that you're actually looking at the file contents, directly, rather than relying on globbing.
------------ :Wq Not an editor command: Wq

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://408855]
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: (8)
As of 2024-04-25 11:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found