At 02:25 PM 11/14/2006 -0800, Dan Jablonsky wrote:
>So, I guess I don't know what is the equivalent module
>for tar.gz that would do the same thing as
>Archive::Zip for zip ... (I tried Archive::Extract but
>I got nowhere).
Quick and dirty way:
@members = `tar -ztf $file`;
--
REMEMBER THE
- Original Message -
From: "Dan Jablonsky" <[EMAIL PROTECTED]>
To:
Sent: Wednesday, November 15, 2006 5:37 AM
Subject: extract memeber of zip archive to directory
> Hi all,
> would anybody tell me how to extract a zip archive
> member to a certain directory?
>
> I used the code below;
- Original Message -
From: "Dan Jablonsky" <[EMAIL PROTECTED]>
.
.
>
> So, I guess I don't know what is the equivalent module
> for tar.gz that would do the same thing as
> Archive::Zip for zip ... (I tried Archive::Extract but
> I got nowhere).
>
You'll need Archive::Tar and Compress::Z
Hi all,
new problem encountered - I am trying to write a short
script that will search a pattern in file names that
are either within a directory or inside a zip archive
in some directory. I managed to get the results I
needed while the files were within zip archives (or
unarchived) however now I s
Hi all,
would anybody tell me how to extract a zip archive
member to a certain directory?
I used the code below; however I can't extract the
member in other place than the present working
directory (namely, I am checking if the member has a
certain name and if true I extract it - this always
happe