in reply to Re: Fetch URL Contents to File Handle
in thread Fetch URL Contents to File Handle
A ZIP file's central directory is at the end of the file. Although you could get fancy with range requests, ...
This is true, but it is also possible to read a zip file in streaming mode without using the central directory at the end of the file. That's what IO::Uncompress::AnyUncompress does (via IO::Uncompress::Unzip).
If there is a HTTP module that exposes a filehandle interface, then IO::Uncompress::AnyUncompress can read it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Fetch URL Contents to File Handle
by haukex (Archbishop) on Jun 10, 2020 at 20:12 UTC |