Lines Matching full:suffix
3 File::Basename - Parse file paths into directory, filename and suffix.
9 my ($name, $path, $suffix) = fileparse($fullname, @suffixlist);
19 and suffix.
67 my($filename, $dirs, $suffix) = fileparse($path);
68 my($filename, $dirs, $suffix) = fileparse($path, @suffixes);
72 and (optionally) the filename $suffix.
89 portion is removed and becomes the $suffix.
95 matching for suffix removal is performed case-insensitively, since
98 You are guaranteed that C<$dirs . $filename . $suffix> will
162 my $suffix = '';
164 foreach $suffix (@suffices) {
165 my $pat = ($igncase ? '(?i)' : '') . "($suffix)\$";
167 $taint .= substr($suffix,0,0);
208 C<basename()> does not strip off a suffix if it is identical to the
222 my($basename, $dirname, $suffix) = fileparse( $path, map("\Q$_\E",@_) );
225 # The suffix is not stripped if it is identical to the remaining
227 if( length $suffix and !length $basename ) {
228 $basename = $suffix;