in reply to Re^2: Do modules know the callers full path?
in thread Do modules know the callers full path?
I see that Cwd's cwd, getcwd and abs_path return the path to the script with no script name
Again, please show some representative code - see also SSCCE. Functions like getcwd won't be the script's directory if the script is invoked with e.g. perl ../script.pl.
I'd like this to be as bulletproof as possible.
I know the feeling well and I often preach to make code as robust a possible. But this is one of those cases where experience has taught me that in 99% of my code, it's in fact ok to rely on $0 and caller, since most users are just going to be calling my script in a completely normal manner like perl script.pl.
In any case, code like I showed here will work a good portion of the time, important exceptions being when the script is read from STDIN or it's an -e oneliner. As I mentioned here, it would also be possible to adapt FindBin's code to work on caller.
But I suspect this may also be an XY Problem. Perhaps you can explain why you (think you) need this. A module shouldn't normally need to know the full filename of its caller. Looking at it another way, why can't the script use the more reliable FindBin to determine its own path, and then pass that as an argument to the module?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Do modules know the callers full path?
by Anonymous Monk on Feb 17, 2023 at 10:34 UTC | |
by haukex (Archbishop) on Feb 17, 2023 at 13:51 UTC | |
by Anonymous Monk on Feb 17, 2023 at 15:48 UTC | |
by soonix (Chancellor) on Feb 18, 2023 at 16:03 UTC |