RE: Using compression on Win32 systems

2004-02-10 Thread Mike Flannigan
chdir $dir or die "Cannot chdir $dir:$!\n"; my $zip = Archive::Zip->new(); die "Error reading $zipfile:$!" unless $zip->read( "$dir/$zipfile" ) == AZ_OK; $zip->extractMember($_) for $zip->members; __END__ > Subject: RE: Using compression on W

RE: Using compression on Win32 systems

2004-02-05 Thread Tim Johnson
Try looking for Archive::Zip -Original Message- From: Ned Cunningham [mailto:[EMAIL PROTECTED] Sent: Thursday, February 05, 2004 8:35 AM To: Paul Kraus; [EMAIL PROTECTED] Subject: RE: Using compression on Win32 systems Yes, I have looked and googled and searched aspn. Have not been

RE: Using compression on Win32 systems

2004-02-05 Thread Ned Cunningham
: Paul Kraus [mailto:[EMAIL PROTECTED] Sent: Thursday, February 05, 2004 9:59 AM To: Ned Cunningham; [EMAIL PROTECTED] Subject:RE: Using compression on Win32 systems Do you read the perl docs? They almost always contain

RE: Using compression on Win32 systems

2004-02-05 Thread Paul Kraus
> Sent: Thursday, February 05, 2004 9:50 AM > To: [EMAIL PROTECTED] > Subject: Using compression on Win32 systems > > Hi all: > > Can someone please suggest to me a way to (compress,zip,archive) multiple > files and then (uncompress,unzip,unarchive) them. > > I need to zip

RE: Using compression on Win32 systems

2004-02-05 Thread Paul Kraus
> Subject: Using compression on Win32 systems > > Hi all: > > Can someone please suggest to me a way to (compress,zip,archive) multiple > files and then (uncompress,unzip,unarchive) them. > > I need to zip them to a CD then have them unzipped on a win32 system. I > have l

Using compression on Win32 systems

2004-02-05 Thread Ned Cunningham
Hi all: Can someone please suggest to me a way to (compress,zip,archive) multiple files and then (uncompress,unzip,unarchive) them. I need to zip them to a CD then have them unzipped on a win32 system. I have looked at win32::compress and archive tar pm, but have not been able to find an examp