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

Re: Working directory oddity

by cLive ;-) (Prior)
on Oct 18, 2007 at 04:51 UTC ( [id://645644]=note: print w/replies, xml ) Need Help??


in reply to Working directory oddity

Windows, right? It helps if you clarify when writing these questions :)

Possibly abs_path can help?

use strict; use warnings; use Cwd qw(abs_path); chdir("C:\WINDOWS\PROGRAM FILES"); # <- or whatever it is in windows. my $thisdir = abs_path('.'); print "This dir is $this_dir\n";

Untested (I'm in Linux), but that would be my first stab at this.

Replies are listed 'Best First'.
Re^2: Working directory oddity
by ikegami (Patriarch) on Oct 18, 2007 at 05:38 UTC

    Sorry, that doesn't work :( and not just cause your slashes are unescaped ;)
    getcwd, cwd and abs_path all return paths using the same caps provided to chdir (and with the slashes reversed to /).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-25 11:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found