Hello
I have a question, please help me!
This assembly works great, I use it in VB.NET and have no problem adding file to zip archives.
But I have problems with extracting files from the archive!
Dim MyZip As New ZipInputStream(File.OpenRead(FileTextBox.Text))
Dim EntryObject As ZipEntry = MyZip.GetNextEntry()
While IsNothing(EntryObject) = False
If EntryObject.IsFile And EntryObject.Name = "myfile.txt" Then
'I don't know how to extacr each EntryObject here!!!
End If
EntryObject = MyZip.GetNextEntry()
End While
MyZip.Close()