--- foxridge-archiver/MPIWGStor.pm 2005/05/26 14:31:28 1.3 +++ foxridge-archiver/MPIWGStor.pm 2005/09/20 17:24:57 1.5 @@ -12,7 +12,7 @@ use vars qw(@ISA @EXPORT $VERSION $file_perm); use Exporter; -$VERSION = 0.6; # ROC 26.5.2005 +$VERSION = 0.6.1; # ROC 8.8.2005 @ISA = qw(Exporter); @@ -140,12 +140,17 @@ sub ymd_date { # file name (the last path element) and path # sub split_file_path { - my ($fn) = @_; + my ($fn, $nodot) = @_; if ($fn =~ /^(.*)\/([^\/]+)$/) { return ($2, $1); + } + # only file name + if ($nodot) { + return ($fn, ''); + } else { + return ($fn, '.'); } - return $fn; }