📄 dos_path.al
字号:
# NOTE: Derived from ./blib/lib/URI/URL/file.pm. Changes made here will be lost.package URI::URL::file;sub dos_path{ my $self = shift; my @p; for ($self->path_components) { Carp::croak("Path component contains '/' or '\\'") if m|[/\\]|; push(@p, uc $_); } my $p = join("\\", @p); $p =~ s/^\\([A-Z]:)/$1/; # Fix drive letter specification $p;}1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -