unzipFile

void sutil.unzipFile ( String zippedFile )

Description

Unzip a zipped file. Contents will appear in the same directory as the zipped file.

Parameters

  • zippedFile File path to the zipped file, as a string.

Return Values

Returns void. If a file input/output error is experienced it will be thrown.

Change Log

Version Description
5.0 Added for all editions.

Examples

Unzip File

 // Unzips contents of "c:/mydir/myzip.zip"
 // to "c:/mydir/"

 sutil.unzipFile( "c:/mydir/myzip.zip" );