chore: zip creation parameter tweaks

This commit is contained in:
citizen-VM 2021-01-11 01:56:03 +01:00
parent 58410263b3
commit 5c18b89e36
Signed by: wanderer
GPG Key ID: 6391444A736EEE7E

View File

@ -196,7 +196,8 @@ namespace KRY_0x04
File.Delete(filename);
}
ZipFile.CreateFromDirectory(pathTo_dirToZip, filename);
/* 0 for optimal compression, false for not including base dir */
ZipFile.CreateFromDirectory(pathTo_dirToZip, filename, 0, false);
MessageBox.Show("great success!", "gj, zip created");
}
catch (IOException exception)