Help for this page

Select Code to Download


  1. or download this
    use File::Spec::Functions qw(rel2abs);
    
    print "I am ", rel2abs($0), "\n";
    
  2. or download this
    use File::Spec::Functions qw(rel2abs splitpath catpath);
    
    ...
    my $path = catpath( $vol, $dirs, undef );
    
    print "I am ", $path, "\n";