in reply to Archive::Zip into memory
Hello! Isn't the contents method you're seeking?
my $zip = Archive::Zip->new(); unless ( $zip->read( "template.ods" ) == AZ_OK ) { die 'ZIP read error'; } my $contents = $zip->contents( "content.xml" ); [download]