__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
package URI::file::FAT;
use strict;
use warnings;
use parent 'URI::file::Win32';
our $VERSION = '5.27';
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;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Base.pm | File | 1.45 KB | 0644 |
|
| FAT.pm | File | 497 B | 0644 |
|
| Mac.pm | File | 2.43 KB | 0644 |
|
| OS2.pm | File | 561 B | 0644 |
|
| QNX.pm | File | 337 B | 0644 |
|
| Unix.pm | File | 1022 B | 0644 |
|
| Win32.pm | File | 1.72 KB | 0644 |
|