/usr/share/perl5/URI/file
NameSizeModeActions
Base.pm14850644editdlrm
FAT.pm4970644editdlrm
Mac.pm24850644editdlrm
OS2.pm5610644editdlrm
QNX.pm3370644editdlrm
Unix.pm10220644editdlrm
Win32.pm17570644editdlrm
Edit: /usr/share/perl5/URI/file/FAT.pm (497B)
package URI::file::FAT; use strict; use warnings; use parent 'URI::file::Win32'; our $VERSION = '5.09'; sub fix_path { shift; # class for (@_) { # turn it into 8.3 names my @p = map uc, split(/\./, $_, -1); return if @p > 2; # more than 1 dot is not allowed @p = ("") unless @p; # split bug? (returns nothing when splitting "") $_ = substr($p[0], 0, 8); if (@p > 1) { my $ext = substr($p[1], 0, 3); $_ .= ".$ext" if length $ext; } } 1; # ok } 1;