Archive::Zip filesize limit?

2006-06-14 Thread Bullock, Howard A.
I am using Archive::Zip to unzip large text file from archives created by Freebyte Zip. This program (Freebyte Zip) seems to have a 2GB limit when compressing files. The Archive file when viewed in both WinZip and my Perl program show the uncompressed size as zero (0) bytes. My Perl program

RE: Archive::Zip filesize limit?

2006-06-14 Thread Ng, Bill
I use 7zip ... I believe its a SourceForge project. Open Source. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bullock, Howard A. Sent: Wednesday, June 14, 2006 4:23 PM To: Perl-Win32-Users@listserv.ActiveState.com Subject: Archive::Zip filesize

Re: Archive::Zip filesize limit?

2006-06-14 Thread Sisyphus
- Original Message - From: Bullock, Howard A. [EMAIL PROTECTED] To: Perl-Win32-Users@listserv.ActiveState.com Sent: Thursday, June 15, 2006 6:22 AM Subject: Archive::Zip filesize limit? I am using Archive::Zip to unzip large text file from archives created by Freebyte Zip

Re: Archive::Zip filesize limit? - correction

2006-06-14 Thread Sisyphus
Sisyphus wrote: my (aging) version 13.0.0.0 of WinZip Well ... that's the version of winzip32.exe ... but the actual WinZip version number is 8.0. Cheers, Rob ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To

RE: Archive::Zip filesize limit?

2006-06-14 Thread Bullock, Howard A.
I am using Archive::Zip to unzip large text file from archives created by Freebyte Zip. This program (Freebyte Zip) seems to have a 2GB limit when compressing files. The Archive file when viewed in both WinZip and my Perl program show the uncompressed size as zero (0) bytes. For me, version

Re: Archive::Zip filesize limit?

2006-06-14 Thread Sisyphus
- Original Message - From: Bullock, Howard A. . . use strict; use Archive::Zip qw( :ERROR_CODES :CONSTANTS ); my $zip = Archive::Zip-new(); unless ($zip-read( 'C:\\Data\\Scripts\\ProxyLogs\\data\\20060613us194px01.zip' ) == AZ_OK){ print Error reading zip file ()\n; }

archive::zip filesize limit

2001-03-12 Thread John Gmeinder
Using: Activestate Perl V5.6.0 Build 623 NT 4.0 (SP5) Archive-Zip 0.11 Compress-Zlib 1.08 Is there a size limit to the files that are zipped? I don't seem to be able to zip a file greater than 2gig (though I CAN unzip a file greater than 2gig). I can break up the large file before zipping -