Hello
I have a question that might fall out of this forum scope!
But however, a friend in this forum recommended using this free open source ZIP component:
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
If anyone worked with that before and knows about it please help me, otherwise, simply disregard it
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!
I have a question that might fall out of this forum scope!
But however, a friend in this forum recommended using this free open source ZIP component:
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx
If anyone worked with that before and knows about it please help me, otherwise, simply disregard it
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!
Visual Basic:
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()