Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^5: Cwd::abs_path or FindBin::Bin?

by haukex (Archbishop)
on Jun 05, 2019 at 10:41 UTC ( [id://11100999]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Cwd::abs_path or FindBin::Bin?
in thread Cwd::abs_path or FindBin::Bin?

The File::Basename documentation says:

dirname() and basename() emulate the behaviours, and quirks, of the shell and C functions of the same name. ... dirname ... This function is provided for compatibility with the Unix shell command dirname(1) and has inherited some of its quirks. In spite of its name it does NOT always return the directory name as you might expect.

Although it doesn't say what exactly those quirks are. To get a directory ../lib relative to the script into @INC using only core modules, I might suggest the following, although there may be some tricky symlink situations where they return different results (abs_path goes out to the filesystem, the second code example does not). Then the question becomes how likely you think that might be. Test cases are best :-)

use FindBin; use File::Spec::Functions qw/updir catdir/; use Cwd qw/abs_path/; use lib abs_path( catdir( $FindBin::RealBin, updir, 'lib' ) ); # - or - use FindBin; use File::Spec::Functions qw/splitdir catdir/; use lib do { my @p = splitdir $FindBin::RealBin; catdir @p[0 .. $#p-1], 'lib' };

Replies are listed 'Best First'.
Re^6: Cwd::abs_path or FindBin::Bin?
by Skeeve (Parson) on Jun 05, 2019 at 11:30 UTC

    A final Thank You!

    I've now used the Cwd-variant.


    s$$([},&%#}/&/]+}%&{})*;#$&&s&&$^X.($'^"%]=\&(|?*{%
    +.+=%;.#_}\&"^"-+%*).}%:##%}={~=~:.")&e&&s""`$''`"e

Log In?
Username:
Password:

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

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

    No recent polls found