__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
package URI::file::OS2;
use strict;
use warnings;
use parent 'URI::file::Win32';
our $VERSION = '5.27';
# The Win32 version translates k:/foo to file://k:/foo (?!)
# We add an empty host
sub _file_extract_authority
{
my $class = shift;
return $1 if $_[0] =~ s,^\\\\([^\\]+),,; # UNC
return $1 if $_[0] =~ s,^//([^/]+),,; # UNC too?
if ($_[0] =~ m#^[a-zA-Z]{1,2}:#) { # allow for ab: drives
return "";
}
return;
}
sub file {
my $p = &URI::file::Win32::file;
return unless defined $p;
$p =~ s,\\,/,g;
$p;
}
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 |
|