Back

UnzipFile

JS Py
Hello World

Extracts the contents of a zip file to a given target folder.

app.UnzipFile( source, destination, options? )

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" )
    Copy     Copy All       Run      
String: path to file or folder ( “/absolute/...” or “relative/...” )
String: spk