1package File::Basename; 2 3=head1 NAME 4 5fileparse - split a pathname into pieces 6 7basename - extract just the filename from a path 8 9dirname - extract just the directory from a path 10 11=head1 SYNOPSIS 12 13 use File::Basename; 14 15 ($name,$path,$suffix) = fileparse($fullname,@suffixlist) 16 fileparse_set_fstype($os_string); 17 $basename = basename($fullname,@suffixlist); 18 $dirname = dirname($fullname); 19 20 ($name,$path,$suffix) = fileparse("lib/File/Basename.pm","\.pm"); 21 fileparse_set_fstype("VMS"); 22 $basename = basename("lib/File/Basename.pm",".pm"); 23 $dirname = dirname("lib/File/Basename.pm"); 24 25=head1 DESCRIPTION 26 27These routines allow you to parse file specifications into useful 28pieces using the syntax of different operating systems. 29 30=over 4 31 32=item fileparse_set_fstype 33 34You select the syntax via the routine fileparse_set_fstype(). 35 36If the argument passed to it contains one of the substrings 37"VMS", "MSDOS", "MacOS", "AmigaOS" or "MSWin32", the file specification 38syntax of that operating system is used in future calls to 39fileparse(), basename(), and dirname(). If it contains none of 40these substrings, UNIX syntax is used. This pattern matching is 41case-insensitive. If you've selected VMS syntax, and the file 42specification you pass to one of these routines contains a "/", 43they assume you are using UNIX emulation and apply the UNIX syntax 44rules instead, for that function call only. 45 46If the argument passed to it contains one of the substrings "VMS", 47"MSDOS", "MacOS", "AmigaOS", "os2", "MSWin32" or "RISCOS", then the pattern 48matching for suffix removal is performed without regard for case, 49since those systems are not case-sensitive when opening existing files 50(though some of them preserve case on file creation). 51 52If you haven't called fileparse_set_fstype(), the syntax is chosen 53by examining the builtin variable C<$^O> according to these rules. 54 55=item fileparse 56 57The fileparse() routine divides a file specification into three 58parts: a leading B<path>, a file B<name>, and a B<suffix>. The 59B<path> contains everything up to and including the last directory 60separator in the input file specification. The remainder of the input 61file specification is then divided into B<name> and B<suffix> based on 62the optional patterns you specify in C<@suffixlist>. Each element of 63this list is interpreted as a regular expression, and is matched 64against the end of B<name>. If this succeeds, the matching portion of 65B<name> is removed and prepended to B<suffix>. By proper use of 66C<@suffixlist>, you can remove file types or versions for examination. 67 68You are guaranteed that if you concatenate B<path>, B<name>, and 69B<suffix> together in that order, the result will denote the same 70file as the input file specification. 71 72=back 73 74=head1 EXAMPLES 75 76Using UNIX file syntax: 77 78 ($base,$path,$type) = fileparse('/virgil/aeneid/draft.book7', 79 '\.book\d+'); 80 81would yield 82 83 $base eq 'draft' 84 $path eq '/virgil/aeneid/', 85 $type eq '.book7' 86 87Similarly, using VMS syntax: 88 89 ($name,$dir,$type) = fileparse('Doc_Root:[Help]Rhetoric.Rnh', 90 '\..*'); 91 92would yield 93 94 $name eq 'Rhetoric' 95 $dir eq 'Doc_Root:[Help]' 96 $type eq '.Rnh' 97 98=over 99 100=item C<basename> 101 102The basename() routine returns the first element of the list produced 103by calling fileparse() with the same arguments, except that it always 104quotes metacharacters in the given suffixes. It is provided for 105programmer compatibility with the UNIX shell command basename(1). 106 107=item C<dirname> 108 109The dirname() routine returns the directory portion of the input file 110specification. When using VMS or MacOS syntax, this is identical to the 111second element of the list produced by calling fileparse() with the same 112input file specification. (Under VMS, if there is no directory information 113in the input file specification, then the current default device and 114directory are returned.) When using UNIX or MSDOS syntax, the return 115value conforms to the behavior of the UNIX shell command dirname(1). This 116is usually the same as the behavior of fileparse(), but differs in some 117cases. For example, for the input file specification F<lib/>, fileparse() 118considers the directory name to be F<lib/>, while dirname() considers the 119directory name to be F<.>). 120 121=back 122 123=cut 124 125require 5.002; 126require Exporter; 127@ISA = qw(Exporter); 128@EXPORT = qw(fileparse fileparse_set_fstype basename dirname); 129#use strict; 130#use vars qw($VERSION $Fileparse_fstype $Fileparse_igncase); 131$VERSION = "2.5"; 132 133 134# fileparse_set_fstype() - specify OS-based rules used in future 135# calls to routines in this package 136# 137# Currently recognized values: VMS, MSDOS, MacOS, AmigaOS, os2, RISCOS 138# Any other name uses Unix-style rules and is case-sensitive 139 140sub fileparse_set_fstype { 141 my @old = ($Fileparse_fstype, $Fileparse_igncase); 142 if (@_) { 143 $Fileparse_fstype = $_[0]; 144 $Fileparse_igncase = ($_[0] =~ /^(?:MacOS|VMS|AmigaOS|os2|RISCOS|MSWin32)/i); 145 } 146 wantarray ? @old : $old[0]; 147} 148 149# fileparse() - parse file specification 150# 151# Version 2.4 27-Sep-1996 Charles Bailey bailey@genetics.upenn.edu 152 153 154sub fileparse { 155 my($fullname,@suffices) = @_; 156 my($fstype,$igncase) = ($Fileparse_fstype, $Fileparse_igncase); 157 my($dirpath,$tail,$suffix,$basename); 158 159 if ($fstype =~ /^VMS/i) { 160 if ($fullname =~ m#/#) { $fstype = '' } # We're doing Unix emulation 161 else { 162 ($dirpath,$basename) = ($fullname =~ /^(.*[:>\]])?(.*)/); 163 } 164 } 165 if ($fstype =~ /^MS(DOS|Win32)/i) { 166 ($dirpath,$basename) = ($fullname =~ /^((?:.*[:\\\/])?)(.*)/); 167 $dirpath .= '.\\' unless $dirpath =~ /[\\\/]$/; 168 } 169 elsif ($fstype =~ /^MacOS/i) { 170 ($dirpath,$basename) = ($fullname =~ /^(.*:)?(.*)/); 171 } 172 elsif ($fstype =~ /^AmigaOS/i) { 173 ($dirpath,$basename) = ($fullname =~ /(.*[:\/])?(.*)/); 174 $dirpath = './' unless $dirpath; 175 } 176 elsif ($fstype !~ /^VMS/i) { # default to Unix 177 ($dirpath,$basename) = ($fullname =~ m#^(.*/)?(.*)#); 178 $dirpath = './' unless $dirpath; 179 } 180 181 if (@suffices) { 182 $tail = ''; 183 foreach $suffix (@suffices) { 184 my $pat = ($igncase ? '(?i)' : '') . "($suffix)\$"; 185 if ($basename =~ s/$pat//) { 186 $tail = $1 . $tail; 187 } 188 } 189 } 190 191 wantarray ? ($basename,$dirpath,$tail) : $basename; 192} 193 194 195# basename() - returns first element of list returned by fileparse() 196 197sub basename { 198 my($name) = shift; 199 (fileparse($name, map("\Q$_\E",@_)))[0]; 200} 201 202 203# dirname() - returns device and directory portion of file specification 204# Behavior matches that of Unix dirname(1) exactly for Unix and MSDOS 205# filespecs except for names ending with a separator, e.g., "/xx/yy/". 206# This differs from the second element of the list returned 207# by fileparse() in that the trailing '/' (Unix) or '\' (MSDOS) (and 208# the last directory name if the filespec ends in a '/' or '\'), is lost. 209 210sub dirname { 211 my($basename,$dirname) = fileparse($_[0]); 212 my($fstype) = $Fileparse_fstype; 213 214 if ($fstype =~ /VMS/i) { 215 if ($_[0] =~ m#/#) { $fstype = '' } 216 else { return $dirname || $ENV{DEFAULT} } 217 } 218 if ($fstype =~ /MacOS/i) { return $dirname } 219 elsif ($fstype =~ /MSDOS/i) { 220 $dirname =~ s/([^:])[\\\/]*$/$1/; 221 unless( length($basename) ) { 222 ($basename,$dirname) = fileparse $dirname; 223 $dirname =~ s/([^:])[\\\/]*$/$1/; 224 } 225 } 226 elsif ($fstype =~ /MSWin32/i) { 227 $dirname =~ s/([^:])[\\\/]*$/$1/; 228 unless( length($basename) ) { 229 ($basename,$dirname) = fileparse $dirname; 230 $dirname =~ s/([^:])[\\\/]*$/$1/; 231 } 232 } 233 elsif ($fstype =~ /AmigaOS/i) { 234 if ( $dirname =~ /:$/) { return $dirname } 235 chop $dirname; 236 $dirname =~ s#[^:/]+$## unless length($basename); 237 } 238 else { 239 $dirname =~ s:(.)/*$:$1:; 240 unless( length($basename) ) { 241 local($File::Basename::Fileparse_fstype) = $fstype; 242 ($basename,$dirname) = fileparse $dirname; 243 $dirname =~ s:(.)/*$:$1:; 244 } 245 } 246 247 $dirname; 248} 249 250fileparse_set_fstype $^O; 251 2521; 253