Unzip a zip file to a directory using streaming decompression.
Equivalent to unzip -o <zipFilePath> -d <destDir>
This function processes the zip file incrementally, minimizing memory usage.
Recommended for large files (>10MB). For small files, consider using unzip instead.
Unzip a zip file to a directory using streaming decompression. Equivalent to
unzip -o <zipFilePath> -d <destDir>This function processes the zip file incrementally, minimizing memory usage. Recommended for large files (>10MB). For small files, consider using unzip instead.
Use fflate as the unzip backend.