in reply to Re^2: Modify zip file in memory
in thread Modify zip file in memory
Also see using IO::String instead of IO::Scalar for in memory zip files.
With IO::Scalar, the basic example is:
Googling around I found this for Windows. Chilcat zip utility which claims to do in memory access in Windows.use IO::Scalar; my $memory_file = ''; #scalar as a file , my $memfile_fh = IO::Scalar->new(\$memory_file); #filehandle to the sc +alar # write to the scalar $memory_file my $status = $zip->writeToFileHandle($memfile_fh); $memfile_fh->close;
|
|---|