epoc.pm

来自「source of perl for linux application,」· PM 代码 · 共 78 行

PM
78
字号
package File::Spec::Epoc;use strict;use vars qw($VERSION @ISA);$VERSION = '3.2501';require File::Spec::Unix;@ISA = qw(File::Spec::Unix);=head1 NAMEFile::Spec::Epoc - methods for Epoc file specs=head1 SYNOPSIS require File::Spec::Epoc; # Done internally by File::Spec if needed=head1 DESCRIPTIONSee File::Spec::Unix for a documentation of the methods providedthere. This package overrides the implementation of these methods, notthe semantics.This package is still work in progress ;-)=cutsub case_tolerant {    return 1;}=pod=over 4=item canonpath()No physical check on the filesystem, but a logical cleanup of apath. On UNIX eliminated successive slashes and successive "/.".=back=cutsub canonpath {    my ($self,$path) = @_;    $path =~ s|/+|/|g;                             # xx////xx  -> xx/xx    $path =~ s|(/\.)+/|/|g;                        # xx/././xx -> xx/xx    $path =~ s|^(\./)+||s unless $path eq "./";    # ./xx      -> xx    $path =~ s|^/(\.\./)+|/|s;                     # /../../xx -> xx    $path =~  s|/\Z(?!\n)|| unless $path eq "/";          # xx/       -> xx    return $path;}=pod=head1 AUTHORo.flebbe@gmx.de=head1 COPYRIGHTCopyright (c) 2004 by the Perl 5 Porters.  All rights reserved.This program is free software; you can redistribute it and/or modifyit under the same terms as Perl itself.=head1 SEE ALSOSee L<File::Spec> and L<File::Spec::Unix>.  This package overrides theimplementation of these methods, not the semantics.=cut1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?