Sample code for 30+ languages & platforms
Tcl

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 Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set zip [new_CkZip]

set zipPath "c:/temp/myFiles.zip"

# Initialize the zip object, which also sets the FileName property to the path of the zip to be created.
CkZip_NewZip $zip $zipPath

# Append references to files to be zipped.
set recurse 1
set success [CkZip_AppendFiles $zip "c:/temp/files_to_zip/*" $recurse]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

# 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)
set success [CkZip_WriteZip $zip]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

puts "Successfully created $zipPath"

# Let's look at what's in the .zip we just created..

set numEntries [CkZip_get_NumEntries $zip]

set entry [new_CkZipEntry]

set i 0
while {$i < $numEntries} {
    CkZip_EntryAt $zip $i $entry
    if {CkZipEntry_get_IsDirectory $entry} then {
        puts "$i: [CkZipEntry_fileName $entry] (directory)"
    }     else {
        puts "$i: [CkZipEntry_fileName $entry]"
    }

    set i [expr $i + 1]
}

# Close the zip file when finished.
CkZip_CloseZip $zip

delete_CkZip $zip
delete_CkZipEntry $entry