CGI-FileManager
view release on metacpan or search on metacpan
lib/CGI/FileManager.pm view on Meta::CPAN
}
my @files;
foreach my $f (@entries) {
my $full = File::Spec->catfile($path, $f);
push @files, {
filename => $f,
filetype => $self->_file_type($full),
subdir => -d $full,
zipfile => ($full =~ /\.zip/i ? 1 : 0),
filedate => scalar (localtime((stat($full))[9])),
size => (stat($full))[7],
delete_link => $f eq ".." ? "" : $self->_delete_link($full),
rename_link => $f eq ".." ? "" : $self->_rename_link($full),
workdir => $workdir,
};
}
$t->param(workdir => $workdir);
$t->param(files => \@files);
$t->param(version => $VERSION);
}
( run in 1.221 second using v1.01-cache-2.11-cpan-49f99fa48dc )