I'm using DotNetZip to zip my files, but I need to set a password in zip.
I tryed:
public void Zip(string path, string outputPath)
{
using (ZipFile zip = new ZipFile())
{
zip.AddDirectory(path);
zip.Password = "password";
zip.Save(outputPath);
}
}
But the output zip not have password.
The parameter path
has a subfolder for exemple:
path = c:\path\
and inside path I have subfolder
What is wrong?