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) Iterate over Matching FilenamesIterates over files within a .zip that match a pattern. In this case, the pattern is "*.pem". This example will open a .zip containing files of type .txt, .cer, .pem, and possibly others, and will iterate over only the .pem files.
' This example 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 PEM files, among other things.. Dim success As Boolean = Await zip.OpenZipAsync("qa_data/certs/thawte-roots.zip") If (success <> True) Then Debug.WriteLine(zip.LastErrorText) Exit Sub End If Dim entry As Chilkat.ZipEntry = zip.FirstMatchingEntry("*.pem") If (zip.LastMethodSuccess <> True) Then Debug.WriteLine("No PEM entries found.") Exit Sub End If Dim nextEntry As Chilkat.ZipEntry Dim pemStr As String Dim bContinue As Boolean = True While (bContinue = True) Debug.WriteLine("Entry: " & entry.FileName) ' Get the uncommpressed contents of the entry: pemStr = Await entry.UnzipToStringAsync(0,"utf-8") Debug.WriteLine(pemStr) nextEntry = entry.NextMatchingEntry("*.pem") bContinue = entry.LastMethodSuccess entry = nextEntry End While |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.