[ Root System Explorer ]
Location:
Root
/
usr
/
share
/
perl5
/
URI
/
file
+ Folder
+ File
Upload
Editing: OS2.pm
package URI::file::OS2; use strict; use warnings; use parent 'URI::file::Win32'; our $VERSION = '5.09'; # 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;
SAVE CHANGES
[ CANCEL ]
Name
Type
Actions
.. (Parent Directory)
📄 Base.pm
FILE
Ren
[EDIT]
DEL
📄 FAT.pm
FILE
Ren
[EDIT]
DEL
📄 Mac.pm
FILE
Ren
[EDIT]
DEL
📄 OS2.pm
FILE
Ren
[EDIT]
DEL
📄 QNX.pm
FILE
Ren
[EDIT]
DEL
📄 Unix.pm
FILE
Ren
[EDIT]
DEL
📄 Win32.pm
FILE
Ren
[EDIT]
DEL