Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(VB.NET UWP/WinRT) Unzip Some Files by Iterating over EntriesDemonstrates how to unzip specific files by iterating over entries in a .zip.
' This requires the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. Dim zip As New Chilkat.Zip ' Open a .zip containing: ' ' a1.xml ' b1.xml ' c1.xml ' dir1/a2.xml ' dir1/c2.xml ' dir2/dir3/c3.xml ' We wish to unzip only a1.xml, b1.xml, and c1.xml Dim success As Boolean = Await zip.OpenZipAsync("qa_data/zips/xml_files.zip") If (success <> True) Then Debug.WriteLine(zip.LastErrorText) Exit Sub End If Dim sbFilename As New Chilkat.StringBuilder Dim numEntries As Integer = zip.NumEntries Dim i As Integer = 0 While i < numEntries Dim entry As Chilkat.ZipEntry = zip.GetEntryByIndex(i) Dim entryFilePath As String = entry.FileName Debug.WriteLine(entryFilePath) If (entry.IsDirectory = False) Then sbFilename.SetString(entryFilePath) If (sbFilename.Contains("/",False) = False) Then ' Does not contain "/" ' Unzip to the qa_output directory. success = Await entry.ExtractAsync("qa_output") If (success = False) Then Debug.WriteLine("Failed to unzip " & entryFilePath) Else Debug.WriteLine("Unzipped " & entryFilePath) End If End If End If i = i + 1 End While |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.