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

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");