in reply to Re^2: How to determine absolute path of current Perl file?
in thread How to determine absolute path of current Perl file?
my $origin = File::Spec->file_name_is_absolute($0) ? $0 : File::Spec-> +rel2abs($0) ; my ($drive,$directories,$file) = File::Spec->splitpath( $origin ); my $path = File::Spec->catdir($drive,$directories); ################ check starting path my $current = File::Spec->rel2abs('.'); if ($current ne $path) { (chdir $path and print "OK chdir to $path\n")|| die "FATAL una +ble to change directory to '$path'."; }
But if now i understand, you want in a module.pm get the absolute path of the script.pl that used it.
If so you can have in the module a BEGIN block that executes before any attempt for (user's) script to change directory. If in the script there is a chdir in a BEGIN block before loading your module.. you are lost.
L*
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to determine absolute path of current Perl file?
by RonW (Parson) on Feb 29, 2016 at 21:11 UTC | |
by Discipulus (Canon) on Feb 29, 2016 at 22:51 UTC |