Closes zip archive created with ZipCreateFile.
OutputVar := ZipCloseFile(ZipHandle)Function Example: Success := ZipCloseFile(hZip)
The name of the variable in which to store 1 / true if file was added successfully or 0 / false if operation failed.
Zip handle returned from ZipCreateFile.
ZipCreateFile, ZipAddFile, ZipOptions, UnZip, ZipCreateBuffer, ZipAddBuffer, ZipCloseBuffer, UnZipBuffer, ZipRawMemory, UnZipRawMemory, ZipInfo, ZipAddFolder
hZip:=ZipCreateFile("C:\Test.zip") ZipAddFile(hZip, "C:\MyScript.ahk") ZipCloseFile(hZip)