X7ROOT File Manager
Current Path:
/usr/share/doc/perl-Archive-Zip/examples
usr
/
share
/
doc
/
perl-Archive-Zip
/
examples
/
📁
..
📄
calcSizes.pl
(948 B)
📄
copy.pl
(452 B)
📄
extract.pl
(896 B)
📄
mailZip.pl
(1.58 KB)
📄
mfh.pl
(640 B)
📄
readScalar.pl
(750 B)
📄
selfex.pl
(1.53 KB)
📄
unzipAll.pl
(561 B)
📄
updateTree.pl
(822 B)
📄
updateZip.pl
(892 B)
📄
writeScalar.pl
(614 B)
📄
writeScalar2.pl
(613 B)
📄
zip.pl
(666 B)
📄
zipGrep.pl
(1.42 KB)
📄
zipcheck.pl
(1010 B)
📄
zipinfo.pl
(4.36 KB)
📄
ziprecent.pl
(7.53 KB)
📄
ziptest.pl
(1.76 KB)
Editing: zipcheck.pl
#!/usr/bin/perl -w # usage: valid zipname.zip # exits with non-zero status if invalid zip # status = 1: invalid arguments # status = 2: generic error somewhere # status = 3: format error # status = 4: IO error use strict; use Archive::Zip qw(:ERROR_CODES); use IO::Handle; use File::Spec; # instead of stack dump: Archive::Zip::setErrorHandler(sub { warn shift() }); my $nullFileName = File::Spec->devnull(); my $zip = Archive::Zip->new(); my $zipName = shift(@ARGV) || exit 1; eval { my $status = $zip->read($zipName); exit $status if $status != AZ_OK; }; if ($@) { warn 'error reading zip:', $@, "\n"; exit 2 } eval { foreach my $member ($zip->members) { my $fh = IO::File->new(); $fh->open(">$nullFileName") || die "can't open $nullFileName\: $!\n"; my $status = $member->extractToFileHandle($fh); if ($status != AZ_OK) { warn "Extracting ", $member->fileName(), " from $zipName failed\n"; exit $status; } } }
Upload File
Create Folder