PureBasic
PureBasic
Zip and Keep Open
See more Zip Examples
Zip a directory tree by calling WriteZip instead of WriteZipAndClose. When WriteZip is called, the created zip is automatically opened and the zip object contains references to the compressed zip entries (mapped entries) contained within the .zip.Chilkat PureBasic Downloads
IncludeFile "CkZip.pb"
IncludeFile "CkZipEntry.pb"
Procedure ChilkatExample()
success.i = 0
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
zip.i = CkZip::ckCreate()
If zip.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
zipPath.s = "c:/temp/myFiles.zip"
; Initialize the zip object, which also sets the FileName property to the path of the zip to be created.
CkZip::ckNewZip(zip,zipPath)
; Append references to files to be zipped.
recurse.i = 1
success = CkZip::ckAppendFiles(zip,"c:/temp/files_to_zip/*",recurse)
If success = 0
Debug CkZip::ckLastErrorText(zip)
CkZip::ckDispose(zip)
ProcedureReturn
EndIf
; Write the .zip, but don't close the zip file.
; The zip file we just created is automatically opened and the zip object
; now contains entries that are contained within the zip. (They are memory-mapped entries)
success = CkZip::ckWriteZip(zip)
If success = 0
Debug CkZip::ckLastErrorText(zip)
CkZip::ckDispose(zip)
ProcedureReturn
EndIf
Debug "Successfully created " + zipPath
; Let's look at what's in the .zip we just created..
numEntries.i = CkZip::ckNumEntries(zip)
entry.i = CkZipEntry::ckCreate()
If entry.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
i.i = 0
While i < numEntries
CkZip::ckEntryAt(zip,i,entry)
If CkZipEntry::ckIsDirectory(entry)
Debug Str(i) + ": " + CkZipEntry::ckFileName(entry) + " (directory)"
Else
Debug Str(i) + ": " + CkZipEntry::ckFileName(entry)
EndIf
i = i + 1
Wend
; Close the zip file when finished.
CkZip::ckCloseZip(zip)
CkZip::ckDispose(zip)
CkZipEntry::ckDispose(entry)
ProcedureReturn
EndProcedure