You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 15, 2024. It is now read-only.
I am trying to merge the content of multiple zip files into one without unzipping and zipping the files.
I wanted to use the ZipEntry.CloneForNewZipFile(ZipFile) method to clone the entries and add them to the new ZipFile. However after saving the merged ZipFile only the headers appear to be copies and none of the compressed content.
I tracked the problem to line 2561 in .\src\Zip.Shared\ZipEntry.Write.cs
I am trying to merge the content of multiple zip files into one without unzipping and zipping the files.
I wanted to use the ZipEntry.CloneForNewZipFile(ZipFile) method to clone the entries and add them to the new ZipFile. However after saving the merged ZipFile only the headers appear to be copies and none of the compressed content.
I tracked the problem to line 2561 in .\src\Zip.Shared\ZipEntry.Write.cs
where
this._CompressedFileDataSize
was 0. It never got initialized when calling ZipEntry.CloneForNewZipFile(ZipFile)Can you please fix this?
Thank you!
The text was updated successfully, but these errors were encountered: