Hi there,
I've a problem with Password of ZipOutputStream. I updated from version 0.81 to version 0.85, but now the password I put in the ZIP file doesn't work.
In 0.81 this works fine, but now, I copy paste the password and I'm not able to unzip it using winrar.
ZipOutputStream zip = new ZipOutputStream(File.Create(ZIPFile));
(...)
ZipEntry entry = new ZipEntry(XMLFile);
entry.DateTime = DateTime.Now;
entry.CompressionMethod = CompressionMethod.Deflated;
(...)
zip.Password = Password;
zip.PutNextEntry(entry);
(...)
Any suggestion?