Sample code for 30+ languages & platforms
AutoIt

Creates an AES Encrypted Zip with One File Unencrypted

See more Zip Examples

Demonstrates how to create an AES encrypted zip, but also containing one file that is not encrypted. The way we do it is to first create an AES encrypted zip in the usual way, and then we append an unecrypted file to it.

Chilkat AutoIt Downloads

AutoIt
Local $bSuccess = False

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

$oZip = ObjCreate("Chilkat.Zip")

$bSuccess = $oZip.NewZip("qa_output/aes_with_one_unencrypted.zip")
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

; Set properties to indicate that the Zip should be
; AES encrypted.

; A value of 4 indicates WinZip compatible AES encryption.
$oZip.Encryption = 4

; Key length can be 128, 192, or 256 bits.
$oZip.EncryptKeyLength = 128

; Set the password for AES encryption:
$oZip.EncryptPassword = "myPassword"

; Exclude the file helloWorld.txt
; This file will be added unencrypted to the .zip
$oSaExclusions = ObjCreate("Chilkat.StringArray")
$oSaExclusions.Append("helloWorld.txt")
$oZip.SetExclusions $oSaExclusions

$oZip.VerboseLogging = True

; Add a directory tree to be zipped.
Local $bRecurse = True
; Append from a directory relative to our current working directory.
$oZip.AppendFromDir = "qa_data/filesToZip"
$bSuccess = $oZip.AppendFiles("*",$bRecurse)
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oZip.LastErrorText & @CRLF)

; Writes qa_output/aes_with_one_unencrypted.zip
$bSuccess = $oZip.WriteZipAndClose()
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

; ----------------------------------------------
; At this point, we have an encrypted .zip with all 
; files except for helloWorld.txt.
; We'll add helloWorld.txt (unencrypted) to the .zip we just created.

; The NewZip method only initializes the Zip object -- it does
; not create or write a .zip file.

$bSuccess = $oZip.NewZip("notUsed.zip")
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

$oSaExclusions.Clear 
$oZip.SetExclusions $oSaExclusions

; No encryption.
$oZip.Encryption = 0

$oZip.AppendFromDir = "qa_data/filesToZip"

; Add a reference to a file.  This is the file that will
; be added to a already-existing .zip.  
Local $bSaveExtraPath = False
$bSuccess = $oZip.AddFile("helloWorld.txt",$bSaveExtraPath)
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

; Appends the contents of the zip object to the preExisting.zip
; zip archive.  preExisting.zip is opened, and the files
; referenced by this zip object are streamed in, compressed,
; and appended to the end of the archive.
$bSuccess = $oZip.QuickAppend("qa_output/aes_with_one_unencrypted.zip")
If ($bSuccess = False) Then
    ConsoleWrite($oZip.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite("Success!" & @CRLF)