Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: Unzipping and extracting file only with Archive::Zip

by Mr. Muskrat (Canon)
on Nov 28, 2017 at 19:46 UTC ( [id://1204468]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Unzipping and extracting file only with Archive::Zip
in thread Unzipping and extracting file only with Archive::Zip

use strict; use warnings; use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); use Data::Dumper; my $zipFile = "myzip.zip"; my $archiveDir = '/fileDirectory'; my $zip = Archive::Zip->new(); my $status = $zip->read("$archiveDir/$zipFile"); die "Read of $zip failed\n" if $status != AZ_OK; $zip->extractMemberWithoutPaths('info/home/houses.txt', '/zips/houses. +txt'); #$zip->extractMember('info/home/houses.txt', '/zips/houses.txt'); # ei +ther works for me

Replies are listed 'Best First'.
Re^4: Unzipping and extracting file only with Archive::Zip
by Anonymous Monk on Nov 28, 2017 at 20:01 UTC
    Its one of those days where you cant see anything. The issues is right here:
    $zip->extractMember($member, "/zips/$member");
    I was naming the file with "$member". When it should be like this:
    $zip->extractMember($member, "/zips/file_name");

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1204468]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-03-29 04:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found