文件操作 - Extension.pm
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/perl5/vendor_perl/Net/LDAP/Extension.pm
编辑文件内容
# Copyright (c) 1998-2004 Graham Barr <gbarr@pobox.com>. All rights reserved. # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. package Net::LDAP::Extension; our @ISA = qw(Net::LDAP::Message); our $VERSION = '1.03'; #fetch the response name sub response_name { my $self = shift; $self->sync unless exists $self->{resultCode}; exists $self->{responseName} ? $self->{responseName} : undef; } # fetch the response. sub response { my $self = shift; $self->sync unless exists $self->{resultCode}; exists $self->{response} ? $self->{response} : undef; } 1;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件