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
(Excel) 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 Chilkat.Zip Set zip = Chilkat.NewZip ' Open a .zip containing PEM files, among other things.. success = zip.OpenZip("qa_data/certs/thawte-roots.zip") If (success <> True) Then Debug.Print zip.LastErrorText Exit Sub End If Set entry = zip.FirstMatchingEntry("*.pem") If (zip.LastMethodSuccess <> True) Then Debug.Print "No PEM entries found." Exit Sub End If bContinue = True Do While (bContinue = True) Debug.Print "Entry: "; entry.FileName ' Get the uncommpressed contents of the entry: pemStr = entry.UnzipToString(0,"utf-8") Debug.Print pemStr Set nextEntry = entry.NextMatchingEntry("*.pem") bContinue = entry.LastMethodSuccess Set entry = nextEntry Loop |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.