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
(PowerBuilder) Create a Zip Entirely in MemoryDemonstrates how to create a .zip from in-memory byte data and strings, and to write the .zip to an in-memory image.
integer li_rc oleobject loo_Crypt oleobject loo_Zip integer li_Success oleobject loo_Entry oleobject loo_Fac // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Crypt = create oleobject // Use "Chilkat_9_5_0.Crypt2" for versions of Chilkat < 10.0.0 li_rc = loo_Crypt.ConnectToNewObject("Chilkat.Crypt2") if li_rc < 0 then destroy loo_Crypt MessageBox("Error","Connecting to COM object failed") return end if loo_Zip = create oleobject // Use "Chilkat_9_5_0.Zip" for versions of Chilkat < 10.0.0 li_rc = loo_Zip.ConnectToNewObject("Chilkat.Zip") li_Success = loo_Zip.NewZip("test.zip") if li_Success <> 1 then Write-Debug loo_Zip.LastErrorText destroy loo_Crypt destroy loo_Zip return end if // Add the bytes 0x00 0x01 0x02 0x03 ... 0x0F as a file in the .zip loo_BinFileData = loo_Crypt.Decode("000102030405060708090A0B0C0D0E0F","hex") loo_Entry = loo_Zip.AppendData("binaryData.dat",loo_BinFileData) destroy loo_Entry // Add the string "Hello World!" to the .zip loo_Entry = loo_Zip.AppendString2("helloWorld.txt","Hello World!","utf-8") destroy loo_Entry loo_ZipFileInMemory = loo_Zip.WriteToMemory() // We could save these files to a file, and it is a valid .zip loo_Fac = create oleobject // Use "Chilkat_9_5_0.FileAccess" for versions of Chilkat < 10.0.0 li_rc = loo_Fac.ConnectToNewObject("Chilkat.FileAccess") li_Success = loo_Fac.WriteEntireFile("test.zip",loo_ZipFileInMemory) if li_Success <> 1 then Write-Debug loo_Fac.LastErrorText destroy loo_Crypt destroy loo_Zip destroy loo_Fac return end if Write-Debug "Zip Created!" destroy loo_Crypt destroy loo_Zip destroy loo_Fac |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.