/usr/share/perl5/OpaL/dir.pm is in opalmod 0.2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | #!/usr/bin/perl
# OpaL Perl Modules
# Copyright (C) 2000,2007-2008 Ola Lundqvist <ola@inguza.com>
#
# For full COPYRIGHT notice see the COPYING document.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of either:
#
# a) the GNU General Public License as published by the Free
# Software Foundation; either version 1, or (at your option) any
# later version, or
#
# b) the "Artistic License" which comes with this Kit.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either
# the GNU General Public License or the Artistic License for more details.
#
#
# For more information take a look at the official homepage at:
# http://inguza.com/software/opalmod
# or contact the author at:
# ola@inguza.com
#
package OpaL::dir;
use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
use OpaL::action qw(pdebug action);
use POSIX qw(strftime);
require Exporter;
@ISA = qw(Exporter AutoLoader);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
@EXPORT = qw( );
@EXPORT_OK = qw(getdirlist);
# If you are using CVS/RCS this can be quite handy.
#$VERSION = do{my@r=q$Revision: 1.13 $=~/\d+/g;sprintf '%d.'.'%02d'x$#r,@r};
# If that is not what you want use this instead. Will be rewritten by
# create release.
my $version = '0.01';
$VERSION = $version;
###############################################################################
############################ PACKAGE GLOBALS ##################################
###############################################################################
# First exported ones (those in @EXPORT or @EXPORT_OK)
# Then package other global ones. (not exported ones)
# Can be accessed through $OpaL::dir::variablename
# All file-scooped variables must be created before any method that uses them.
# my $myvar = '';
###############################################################################
########################### PRELOADED METHODS #################################
###############################################################################
# Preloaded methods go here.
# Autoload methods go after =cut, and are processed by the autosplit program.
# Modules must return true.
1;
__END__
###############################################################################
############################# DOCUMENTATION ###################################
###############################################################################
# Below is the stub of documentation for your module. You better edit it!
=head1 NAME
OpaL::dir - Perl extension for directory access.
=head1 SYNOPSIS
use OpaL::dir qw(getdirlist);
@list = getdirlist($directory);
=head1 DESCRIPTION
OpaL::dir is a module for directory access in a bit more advanced manner
than the ordinary perl module for directory access.
=head1 FUNCTIONS
=over 4
=item B<getdirlist>
Returns a list containing all files in the directory you have specified.
It will look for all files recursivly.
It will also exclude all CVS/* files, "." and ".." directories.
USAGE:
@list = C<getdirlist>($directoryname);
=back
=head1 AUTHOR
Ola Lundqvist <ola@inguza.com>
=head1 REQUIRES
This package requires OpaL::action so you have to make sure that that perl
module is installed.
=head1 SEE ALSO
L<OpaL::action>
perl(1)
=cut
###############################################################################
########################### AUTOLOAD METHODS ##################################
###############################################################################
###############################################################################
# Name: getdirlist
# Description: Get the filenames for a directory, recursive.
# Argument: A directory name.
# Returns: A list of filenames.
# Author: Ola Lundqvist <ola@inguza.com>
# Date: 2000-05-13
# 2000-06-29 Argument definition.
###############################################################################
sub getdirlist {#($) {
pdebug(5,"Entering getdirlist.");
my $dir,@t = ();
while ($dir = shift) {
&action(! (opendir (D,$dir)),
"Trying to open $dir.");
my $k;
while ($k = readdir(D)) {
if (-f "$dir/$k") {
if ($k !~ /~$/ &&
$k !~ /^#.*#$/
) {
push @t, "$dir/$k";
}
}
elsif (-d "$dir/$k") {
if ($k !~ /^\.+$/ &&
$k !~ /CVS/
) {
push @_, "$dir/$k";
}
}
}
}
return @t;
}
|