Is there any code for vb.net so i can zip and unzip file without any 3rd party programs. e.g. (i know this is not right)
Using zip As ZipFile = New ZipFile
zip.AddDirectory(directory)
zip.Save(targetZip)
End Using
Is there any code for vb.net so i can zip and unzip file without any 3rd party programs. e.g. (i know this is not right)
Using zip As ZipFile = New ZipFile
zip.AddDirectory(directory)
zip.Save(targetZip)
End Using
There's the ZipPackage class in .NET but it is such a PITA to use that you are probably better of using a third party library such as SharpZipLib.