![]() |
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
(Swift) Remove an Entry from an Existing ZIP Using DeleteEntry
This example demonstrates how to use the The example:
Suppose the original ZIP archive contains:
After deleting
The entry is removed only from the in-memory ZIP object until a
Note: This example requires Chilkat v11.0.0 or greater.
func chilkatTest() { var success: Bool = false success = false // ------------------------------------------------------------ // First create a ZIP archive containing three text files. let zip = CkoZip()! success = zip.newZip("original.zip") if success == false { print("\(zip.lastErrorText!)") return } var charset: String? = "utf-8" success = zip.addString("a.txt", content: "Contents of file A", charset: charset) if success == false { print("\(zip.lastErrorText!)") return } success = zip.addString("b.txt", content: "Contents of file B", charset: charset) if success == false { print("\(zip.lastErrorText!)") return } success = zip.addString("c.txt", content: "Contents of file C", charset: charset) if success == false { print("\(zip.lastErrorText!)") return } // Write the ZIP archive to disk. // // The ZIP now contains: // // a.txt // b.txt // c.txt // success = zip.writeAndClose() if success == false { print("\(zip.lastErrorText!)") return } // ------------------------------------------------------------ // Open the existing ZIP archive for modification. let zip2 = CkoZip()! success = zip2.open("original.zip") if success == false { print("\(zip2.lastErrorText!)") return } // Find the entry named "b.txt". let entry = CkoZipEntry()! success = zip2.entry(of: "b.txt", entry: entry) if success == false { print("\(zip2.lastErrorText!)") return } // Remove the entry from the in-memory ZIP object. // // At this point, the original ZIP file on disk is unchanged. // The deletion takes effect only after WriteZip or // WriteZipAndClose is called. success = zip2.delete(entry) if success == false { print("\(zip2.lastErrorText!)") return } // Write the modified ZIP archive to a new file. zip2.fileName = "modified.zip" success = zip2.writeAndClose() if success == false { print("\(zip2.lastErrorText!)") return } // The modified ZIP now contains: // // a.txt // c.txt // print("ZIP archive updated successfully.") } |
||||
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.