Ziplist()

will list the content of given zipfile

Usage

QUERY = Ziplist( zipfile, charset )
Argument Summary
zipfile The path and file name of the zip file on which will be listed.
charset Used to specify the character set of filenames in the zip. [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Ziplist(
   zipfile=?, 
   charset=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ziplist( ArgumentCollection={
   zipfile : ?, 
   charset : ?
} );