|
''UnZip'' Function |
|
|
Unzips a zip file. Syntax UnZip(zip-file-name, file-or-directory-name)
Parameters zip-file-name The name of the zip file file-or-directory-name The name of the target file or directory where the content of the zip file will be expanded.
Examples:
@// Extract the files in "{WEB_APPLICATION_ROOT}\documents.zip" file to the c:\temp\documents directory UnZip('documents.zip', 'c:\temp\documents') |