Ruby
Ruby
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 Ruby Downloads
require 'chilkat'
success = false
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
zip = Chilkat::CkZip.new()
zipPath = "c:/temp/myFiles.zip"
# Initialize the zip object, which also sets the FileName property to the path of the zip to be created.
zip.NewZip(zipPath)
# Append references to files to be zipped.
recurse = true
success = zip.AppendFiles("c:/temp/files_to_zip/*",recurse)
if (success == false)
print zip.lastErrorText() + "\n";
exit
end
# 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 = zip.WriteZip()
if (success == false)
print zip.lastErrorText() + "\n";
exit
end
print "Successfully created " + zipPath + "\n";
# Let's look at what's in the .zip we just created..
numEntries = zip.get_NumEntries()
entry = Chilkat::CkZipEntry.new()
i = 0
while i < numEntries
zip.EntryAt(i,entry)
if (entry.get_IsDirectory())
print i.to_s() + ": " + entry.fileName() + " (directory)" + "\n";
else
print i.to_s() + ": " + entry.fileName() + "\n";
end
i = i + 1
end
# Close the zip file when finished.
zip.CloseZip()