Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
File /
HomeDir /
Delete
Unzip
Name
Size
Permission
Date
Action
Darwin
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Darwin.pm
3.21
KB
-rw-rw-rw-
2020-09-28 17:06
Driver.pm
1.15
KB
-rw-rw-rw-
2020-09-28 17:06
FreeDesktop.pm
4.16
KB
-rw-rw-rw-
2020-09-28 17:06
MacOS9.pm
3.32
KB
-rw-rw-rw-
2020-09-28 17:06
Test.pm
3.18
KB
-rw-rw-rw-
2020-09-28 17:06
Unix.pm
3.76
KB
-rw-rw-rw-
2020-09-28 17:06
Windows.pm
6.64
KB
-rw-rw-rw-
2020-09-28 17:06
Save
Rename
package File::HomeDir::Driver; # Abstract base class that provides no functionality, # but confirms the class is a File::HomeDir driver class. use 5.008003; use strict; use warnings; use Carp (); use vars qw{$VERSION}; BEGIN { $VERSION = '1.006'; } sub my_home { Carp::croak("$_[0] does not implement compulsory method $_[1]"); } 1; =pod =head1 NAME File::HomeDir::Driver - Base class for all File::HomeDir drivers =head1 DESCRIPTION This module is the base class for all L<File::HomeDir> drivers, and must be inherited from to identify a class as a driver. It is primarily provided as a convenience for this specific identification purpose, as L<File::HomeDir> supports the specification of custom drivers and an C<-E<gt>isa> check is used during the loading of the driver. =head1 AUTHOR Adam Kennedy E<lt>adamk@cpan.orgE<gt> =head1 SEE ALSO L<File::HomeDir> =head1 COPYRIGHT Copyright 2009 - 2011 Adam Kennedy. Copyright 2017 - 2020 Jens Rehsack This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut