Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Getting a List of Files Via Glob

by merlyn (Sage)
on May 28, 2000 at 10:20 UTC ( [id://15185]=note: print w/replies, xml ) Need Help??


in reply to Getting a List of Files Via Glob

If you don't mind a chdir, then add it first:
chdir $area or die "chdir $area: $!"; @file_list = glob("@files");

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
RE: Re: Getting a List of Files Via Glob
by Zoogie (Curate) on May 30, 2000 at 21:14 UTC
    I considered this, but I'd have to return the original working directory at the sub, since other subs assume that the working dir hasn't changed.

    I suppose I could save the original working dir with
    $prevdir = `pwd`;
    But executing the shell command doesn't seem like it would be much more efficient than mapping the directory name on to each glob and then chopping it off...

      Use Cwd. It's a standard module.
      use Cwd; my $dir = cwd(); chdir $otherdir; # do something chdir $dir;

Log In?
Username:
Password:

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

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

    No recent polls found