Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Do you know where your variables are?
 
PerlMonks  

Re: how to get the parent directory name?

by reneeb (Chaplain)
on Dec 08, 2006 at 06:50 UTC ( [id://588568]=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 how to get the parent directory name?

#!/usr/bin/perl use strict; use warnings; use Cwd; print Cwd::realpath('..');

Replies are listed 'Best First'.
Re^2: how to get the parent directory name?
by grinder (Bishop) on Dec 08, 2006 at 08:29 UTC

    Bzzzt! Crash! This is the sound of the cross-platform compatibility police knocking at your door!

    I feel obliged to point out that there is a module that encapsulates the concept of parent directory. Thus your code becomes:

    use strict; use warnings; use Cwd; use File::Spec; print Cwd::realpath(File::Spec->updir);

    When code begins to involve both Cwd and File::Spec, you know it's time to look at Path::Class (see elsewhere in this thread).

    • another intruder with the mooring in the heart of the Perl

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://588568]
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.