Zip - Suppression
using (ZipArchive archive = ZipFile.Open(@"c:\frenchcoding\start.zip", ZipArchiveMode.Update)) | |
{ | |
archive | |
.GetEntry("test_compress2.txt") | |
.Delete(); | |
archive | |
.GetEntry("test_compress3.txt") | |
.Delete(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment