Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) Remove a File from a .zipDemonstrates how to remove a file from a .zip.
Use ChilkatAx-win32.pkg Procedure Test Handle hoZip Boolean iSuccess Variant vEntry Handle hoEntry 2 Handle hoZip2 // This requires the Chilkat Zip API to have been previously unlocked. // See Unlock Chilkat Zip for sample code. // First prepare a .zip and write it.. Get Create (RefClass(cComChilkatZip)) To hoZip If (Not(IsComObjectCreated(hoZip))) Begin Send CreateComObject of hoZip End Get ComNewZip Of hoZip "qa_output/abc.zip" To iSuccess // Add some files.. Get ComAppendString Of hoZip "a.txt" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" To vEntry If (IsComObject(vEntry)) Begin Get Create (RefClass(cComChilkatZipEntry)) To hoEntry Set pvComObject Of hoEntry To vEntry End Send Destroy of hoEntry Get ComAppendString Of hoZip "b.txt" "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb" To vEntry If (IsComObject(vEntry)) Begin Get Create (RefClass(cComChilkatZipEntry)) To hoEntry Set pvComObject Of hoEntry To vEntry End Send Destroy of hoEntry Get ComAppendString Of hoZip "c.txt" "cccccccccccccccccccccccccccccccccccc" To vEntry If (IsComObject(vEntry)) Begin Get Create (RefClass(cComChilkatZipEntry)) To hoEntry Set pvComObject Of hoEntry To vEntry End Send Destroy of hoEntry // Write to qa_output/abc.zip // This .zip contains three files: a.txt, b.txt, and c.txt Get ComWriteZipAndClose Of hoZip To iSuccess // ------------------------------------------------------------------- // Open abc.zip, remove an entry, and re-write. Get Create (RefClass(cComChilkatZip)) To hoZip2 If (Not(IsComObjectCreated(hoZip2))) Begin Send CreateComObject of hoZip2 End Get ComOpenZip Of hoZip2 "qa_output/abc.zip" To iSuccess Get ComGetEntryByName Of hoZip2 "b.txt" To vEntry If (IsComObject(vEntry)) Begin Get Create (RefClass(cComChilkatZipEntry)) To hoEntry Set pvComObject Of hoEntry To vEntry End Get ComDeleteEntry Of hoZip2 vEntry To iSuccess Send Destroy of hoEntry // Write the modified .zip back to "abc.zip" Get ComWriteZip Of hoZip2 To iSuccess // To write to a different filename, change the FileName.. Set ComFileName Of hoZip2 To "qa_output/ac.zip" Get ComWriteZipAndClose Of hoZip2 To iSuccess Showln "success." End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.