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 Apr 9, 2024. It is now read-only.
I am getting following exception while trying to append a new file to an existing password protected 7z archive.
Exception occurs while invoking CompressFilesEncrypted method in append mode, as shown in below snippet.
var compressor = new new SevenZipCompressor();
compressor.CompressionMode = CompressionMode.Append;
compressor.CompressFilesEncrypted(zipFileName, fileID, fileToBeAdded);
The 7z archive is already created using below code.
Important point to notice, I am not facing the above issue if archive is created with EncryptHeaders = false;
A similar issue had been raised and already fixed for ModifyArchive function.... Here is a link to that issue.
The text was updated successfully, but these errors were encountered:
amarendrabiorad
changed the title
Unable to append new file to an archive, created with EncryptHeaders = True
Unable to append new file to a 7z archive, created with EncryptHeaders = True
Jan 21, 2022
Fix for issue: squid-box#153.
Code changes to update Password in SevenZipCompressor for append operations.
This fix is based on code changes done under: squid-box#20
Fix for issue: squid-box#153.
Code changes to update Password in SevenZipCompressor for append operations.
This fix is based on code changes done under: squid-box#20
I am getting following exception while trying to append a new file to an existing password protected 7z archive.
Exception occurs while invoking CompressFilesEncrypted method in append mode, as shown in below snippet.
The 7z archive is already created using below code.
Important point to notice, I am not facing the above issue if archive is created with EncryptHeaders = false;
A similar issue had been raised and already fixed for ModifyArchive function.... Here is a link to that issue.
The text was updated successfully, but these errors were encountered: