![]() |
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
(Delphi ActiveX) Find a ZIP Entry by EntryID Using EntryByIdSee more Zip Examples This example demonstrates how to use the Each This is useful when:
The example:
Note: This example requires Chilkat v11.0.0 or greater.
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB; ... procedure TForm1.Button1Click(Sender: TObject); var success: Integer; zip: TChilkatZip; entry: TChilkatZipEntry; entryId: Integer; entry2: TChilkatZipEntry; begin success := 0; success := 0; // Open an existing ZIP archive. zip := TChilkatZip.Create(Self); success := zip.OpenZip('example.zip'); if (success = 0) then begin Memo1.Lines.Add(zip.LastErrorText); Exit; end; // Retrieve the first entry in the ZIP archive. entry := TChilkatZipEntry.Create(Self); success := zip.EntryAt(0,entry.ControlInterface); if (success = 0) then begin Memo1.Lines.Add(zip.LastErrorText); Exit; end; Memo1.Lines.Add('Original entry:'); Memo1.Lines.Add(' FileName: ' + entry.FileName); Memo1.Lines.Add(' EntryID: ' + IntToStr(entry.EntryID)); Memo1.Lines.Add(''); // Save the EntryID for later use. entryId := entry.EntryID; // Create another ZipEntry object. entry2 := TChilkatZipEntry.Create(Self); // Retrieve the same entry using EntryById. success := zip.EntryById(entryId,entry2.ControlInterface); if (success = 0) then begin Memo1.Lines.Add(zip.LastErrorText); Exit; end; Memo1.Lines.Add('Entry retrieved by EntryID:'); Memo1.Lines.Add(' FileName: ' + entry2.FileName); Memo1.Lines.Add(' EntryID: ' + IntToStr(entry2.EntryID)); Memo1.Lines.Add(''); // The filenames and EntryID values should match. zip.CloseZip(); Memo1.Lines.Add('Done.'); end; |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.