Xbase++ Requires Chilkat v11.0.0+
Xbase++
Create Password Protected Zip containing a Single File.
See more Zip Examples
Create a password-protected .zip containing a single file. (This uses the older Zip 2.0 encryption scheme, which is weaker and not as secure as AES encryption, which Chilkat Zip also supports.)Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oZip
LOCAL nSaveExtraPath
nSuccess := 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
oZip := CreateObject("Chilkat.Zip")
nSuccess := oZip:NewZip("test.zip")
IF (nSuccess == 0)
? oZip:LastErrorText
oZip:destroy()
RETURN
ENDIF
oZip:SetPassword("secret")
oZip:PasswordProtect := 1
nSaveExtraPath := 0
nSuccess := oZip:AddFile("/temp/hamlet.xml", nSaveExtraPath)
nSuccess := oZip:WriteZipAndClose()
IF (nSuccess == 0)
? oZip:LastErrorText
oZip:destroy()
RETURN
ENDIF
? "Zip Created!"
oZip:destroy()