Subject: | Archive::Extract and very large tar.gz files |
Hi,
I'm unable to use Archive::Extract with very large tar.gz > 100MB files. It works only if I use
local $Archive::Extract::PREFER_BIN =1;
I hoped, that
### only tell it it's compressed if it's a .tgz, as we give it a file
### handle if it's a .tbz
- unless( $tar->read( $fh_to_read, ( $self->is_tgz ? 1 : 0 ) ) ) {
+ unless( $tar->read( $fh_to_read, ( $self->is_tgz ? 1 : 0 ), { extract => 1} ) ) {
help, but that didnt work either. Is there a way to use A::E and A::T with very large files?
--
Boris