http://qs321.pair.com?node_id=483614


in reply to How to get a file's full path?

Try File::Spec, namely its rel2abs() function:
$abs_path = File::Spec->rel2abs( $path ) ; $abs_path = File::Spec->rel2abs( $path, $base ) ;
It's a builtin module (at least in 5.8.7) so installation shouldn't be a concern.

Update:
See also the extended discussion at Absolute pathnames from relative?.

Replies are listed 'Best First'.
Re^2: How to get a file's full path?
by bart (Canon) on Aug 14, 2005 at 11:17 UTC
    Try File::Spec, namely its rel2abs() function:
    It's not a function, it's a class method. If you want a function — and I can understand that, try File::Spec::Functions (also standard) instead.
    use File::Spec::Functions qw(rel2abs); $abs_path = rel2abs( $path );