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