![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Classic ASP) Iterate Through Matching ZIP Entries Using EntryMatching and ZipEntry.GetNextMatchSee more Zip ExamplesThis example demonstrates how to iterate through ZIP entries matching a wildcard pattern using:
The wildcard character The example searches for all entries beneath the Suppose the ZIP archive contains: The wildcard pattern: Matches: Note that ZIP archives may optionally contain separate directory entries. Therefore, the first matching entry may be the directory entry
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <% success = 0 set zip = Server.CreateObject("Chilkat.Zip") ' Open an existing ZIP archive. success = zip.OpenZip("c:/temp/sample.zip") If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( zip.LastErrorText) & "</pre>" Response.End End If ' ------------------------------------------------------------ ' Find the first ZIP entry matching the wildcard pattern: ' ' docs/* ' ' Matching is performed against the full stored ZIP path. ' set entry = Server.CreateObject("Chilkat.ZipEntry") success = zip.EntryMatching("docs/*",entry) If (success = 0) Then Response.Write "<pre>" & Server.HTMLEncode( "No matching entries found.") & "</pre>" zip.CloseZip Response.End End If ' ------------------------------------------------------------ ' Iterate through all matching entries. ' ' GetNextMatch updates the same ZipEntry object so that ' it represents the next matching entry. ' Do While (success = 1) If (entry.IsDirectory = 1) Then Response.Write "<pre>" & Server.HTMLEncode( "[Directory] " & entry.FileName) & "</pre>" Else Response.Write "<pre>" & Server.HTMLEncode( "[File] " & entry.FileName) & "</pre>" End If ' Advance to the next matching entry. success = entry.GetNextMatch("docs/*") Loop zip.CloseZip Response.Write "<pre>" & Server.HTMLEncode( "Done.") & "</pre>" %> </body> </html> |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.