Help for this page

Select Code to Download


  1. or download this
    sub buildPath
    {
    ...
        $path = File::Spec->canonpath($path);
        print  "buildPath : After canonpath: $path :\n" ; 
        ...
    
  2. or download this
    ...
    buildPath : BEFORE canonpath: /home/ghoshabh/ :
    buildPath : After canonpath: /home/ghoshabh :
    ...
    
  3. or download this
    sub buildPath
    {
    ...
        ...
        return $path . $trailing;
    }