⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 epoc.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package File::Spec::Epoc;use strict;use vars qw($VERSION @ISA);$VERSION = '3.27';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) = @_;    return unless defined $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -