]> git.p6c8.net - devedit.git/commitdiff
check_path() was cleaned up. It now uses upper_path() and file_name() instead of...
authorpcanterino <>
Mon, 13 Oct 2003 17:35:48 +0000 (17:35 +0000)
committerpcanterino <>
Mon, 13 Oct 2003 17:35:48 +0000 (17:35 +0000)
modules/Tool.pm

index a37967ed5863c77caf877c59a025492209d25800..9e89e43e6ad71e0ad1e13cafe1c06bad5d428ef8 100644 (file)
@@ -6,7 +6,7 @@ package Tool;
 # Some shared sub routines
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 10-03-2003
+# Last modified: 2003-10-03
 #
 
 use strict;
@@ -14,7 +14,6 @@ use strict;
 use vars qw(@EXPORT);
 
 use Cwd qw(abs_path);
-use File::Basename;
 use File::Spec;
 
 ### Export ###
@@ -54,17 +53,11 @@ sub check_path($$)
   # The path points to a file
   # We have to extract the directory name and create the absolute path
 
-  my @pathinfo = fileparse($path);
+  my $dir  = upper_path($path);
+  my $file = file_name($path);
 
-  # This is only to avoid errors
-
-  my $basename = $pathinfo[0] || '';
-  my $dir      = $pathinfo[1] || '';
-  my $ext      = $pathinfo[2] || '';
-
-  $dir = abs_path($dir);
-
-  $path = $dir."/".$basename.$ext;
+  $dir  = abs_path($dir);
+  $path = $dir."/".$file;
  }
  else
  {

patrick-canterino.de