Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

RE: Re: Getting a List of Files Via Glob

by Zoogie (Curate)
on May 30, 2000 at 21:14 UTC ( [id://15448]=note: print w/replies, xml ) Need Help??


in reply to Re: Getting a List of Files Via Glob
in thread Getting a List of Files Via Glob

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...

Replies are listed 'Best First'.
RE: RE: Re: Getting a List of Files Via Glob
by chromatic (Archbishop) on Jun 25, 2000 at 05:41 UTC
    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://15448]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (8)
As of 2024-04-16 18:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found