D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
usr
/
share
/
perl5
/
URI
/
file
/
Filename :
OS2.pm
back
Copy
package URI::file::OS2; use strict; use warnings; use parent 'URI::file::Win32'; our $VERSION = '1.73'; $VERSION = eval $VERSION; # 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
Size
Last Modified
Owner
Permissions
Actions
Base.pm
1.466
KB
January 09 2018 6:42:55
root
0644
FAT.pm
0.511
KB
January 09 2018 6:42:55
root
0644
Mac.pm
2.452
KB
January 09 2018 6:42:55
root
0644
OS2.pm
0.573
KB
January 09 2018 6:42:55
root
0644
QNX.pm
0.354
KB
January 09 2018 6:42:55
root
0644
Unix.pm
1.023
KB
January 09 2018 6:42:55
root
0644
Win32.pm
1.741
KB
January 09 2018 6:42:55
root
0644
2017 © D7net | D704T team