Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Perl globbing syntax with $variables?

by abualiga (Scribe)
on Aug 01, 2012 at 20:41 UTC ( [id://984891]=note: print w/replies, xml ) Need Help??


in reply to Perl globbing syntax with $variables?

I think the problem is in '*.*'. Perhaps this would work better:

$WantedFiles = '//server/path/WantedFiles'; @files = <$WantedFiles/*>;

If you also wanted the dot files from that directory, then:

@files = <$WantedFiles/* $WantedFiles/.*>;

Perl expands variables to current values before globbing them (Learning Perl).

Log In?
Username:
Password:

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

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

    No recent polls found