Group
Extension

Matches 1

Archive-Zip-SimpleZip ( P/PM/PMQS/Archive-Zip-SimpleZip-1.002.tar.gz, PMQS, 2024; MetaCPAN )
Archive-Zip-SimpleZip/lib/Archive/Zip/SimpleZip.pm ( view source; MetaCPAN )
 ;
    }

=head2 Another filehandle example - Working with Net::FTP

Say you want to read all the json files from ftp://ftp.perl.org/pub/CPAN/
using Net::FTP and write them directly
to a zip archive w
ings;

    use Net::FTP;
    use Archive::Zip::SimpleZip qw($SimpleZipError);

    my $zipFile = 'json.zip';
    my $host = 'ftp.perl.org';
    my $path = '/pub/CPAN';

    my $zip = Archive::Zip::Sim
    my @files = $ftp->ls()
        or die "Cannot ls", $ftp->message;

    for my $file ( grep { /json$/ } @files)
    {
        print " Adding $file\n" ;

        my $zipMember = $zip->openMember(Nam

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.