Michael Ellery wrote:

> Has anyone had success using this module with activeperl on windows XP?
> I've tried to run this simple script:
> 
> my $tar = Archive::Tar->new("c:/myfile.tgz");
> $tar->extract();

Try this:

my $arc = Archive::Tar->new('c:/myfile.tgz', 1);
$arc->extract($arc->list_files());

It works for me just fine with most of CPAN tar.gz distributions.

-- 
Serguei Trouchelle
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to