Sample code for 30+ languages & platforms
Tcl

Create Empty File and Directory Entries in a ZIP

See more Zip Examples

This example demonstrates how to use the AddEmpty method to create both empty directory entries and empty file entries within a ZIP archive.

The example creates:

  • A truly empty directory named emptyDir
  • An empty file named empty.txt located beneath the docs subdirectory

When the ZIP archive is extracted:

  • emptyDir will be created as an empty directory.
  • docs/empty.txt will be created as an empty file under the docs subdirectory.

It is not necessary to explicitly create the docs directory beforehand. The directory structure implied by the file path is created automatically when extracting.

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

set zip [new_CkZip]

set success [CkZip_NewZip $zip "emptyEntries.zip"]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

# Add an empty directory entry named "emptyDir".
set success [CkZip_AddEmpty $zip 1 "emptyDir"]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

# Add an empty file entry named "docs/empty.txt".
set success [CkZip_AddEmpty $zip 0 "docs/empty.txt"]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

# Write the ZIP archive to disk and close it.
set success [CkZip_WriteZipAndClose $zip]
if {$success == 0} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkZip $zip
    exit
}

puts "ZIP archive created successfully."

delete_CkZip $zip