in reply to Without Unzipping and without using Archive module Can we read the file in zip file
Is there any way to read contents inside the zip file without unzipping and without Zip.pm installed ?Another way (edit: to read one file inside a zip file):
#!/usr/bin/env perl use strict; use warnings; use utf8; my $zip_file = q|test.zip|; my $cmd = q|/usr/bin/zless|; my $content = qx|$cmd $zip_file|; print $content;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Without Unzipping and without using Archive module Can we read the file in zip file
by Sekhar Reddy (Acolyte) on Mar 01, 2018 at 14:18 UTC |