ZipClose

Closes a ZIP archive created by ZipCreate().

Synopsis

error = ZipClose(ZipHandle)

Args

ZipHandle is the handle returned by ZipCreate(). If omitted, then all ZIP archives that you have ZipOpen'ed are closed.

Returns

An empty string if the ZIP archive is successfully closed, or an error message if not. (If ZipErr is set to "NUM", then 0 is returned for success, or an error number).

Notes

It is not considered an error to call ZipClose if the ZIP archive is not created.

If you do not call ZipClose, then when your main script ends, RxZip.DLL will automatically close any ZIP archives for you. So cleanup is done automatically when your main script ends.