Beefy Boxes and Bandwidth Generously Provided by pair Networks vroom
Think about Loose Coupling
 
PerlMonks  

Re: perl filenames and square brackets

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

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.