Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Finding files relative to a module

by John M. Dlugosz (Monsignor)
on May 15, 2011 at 04:26 UTC ( [id://904910]=note: print w/replies, xml ) Need Help??


in reply to Finding files relative to a module

Apparently, realpath( catfile( __PACKAGE__, updir(), 'db' ) ) is producing undef.

Look up and see under what conditions realpath will be undef. Maybe it's being fed undef as one of its arguments?

In any case, what do you really want to do if that value is undef? I'm guessing your logic is that if the directory by that name exists use it, or else use realpath('db'). If it has trouble even figureing out the proposed directory, that is in the same boat, right?

So make it:

unless (defined $db_dir_qfn && -d $db_dir_qfn) {
In any case, perhaps the problem isn't that the code finding the directory behaves any differently, but that -d used to not warn and now it does? It might has simply said "no, that's not a valid directory" when fed undef before. You can look that up in perldelta or just try it on your existing Perl installation.

Note that you can write it more concisely as:

$db_dir_qfn = realpath('db') unless defined $db_dir_qfn && -d $db_dir_ +qfn;
but then again, the test is the important part and maybe it should still go up front:
defined $db_dir_qfn && -d $db_dir_qfn or $db_dir_qfn = realpath('db');
saves the excess bracing.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-23 13:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found