Help for this page

Select Code to Download


  1. or download this
    use strict;
    use File::Spec::Functions;
    ...
    print "base=$base path=$path type=$type\n";
    
    print catfile($path, $base, '.xml');  #  test\.xml
    
  2. or download this
    print catfile($path, $base . '.xml');