Extracts the contents of a zip file to a given target folder.
See Also: ZipFolder, ZipFile
Example - Unzip File
function OnStart()
{
app.UnzipFile( "yourfile.zip", "/sdcard/Extracted" );
}
from native import app
def OnStart():
app.UnzipFile( "yourfile.zip", "/sdcard/Extracted" )