- or download this
function fileExtension($file) {
$pos = strrpos($file,".");
...
return $ext;
}
}
- or download this
sub fileExtension {
my $file = shift;
...
return $ext;
}
}
- or download this
sub extension {
my $path = shift;
...
$ext =~ s/^\.//;
return $ext;
}