This site permanently moved to
https://droidscript.github.io
. Please update links accordingly.
You are being forwarded automatically in 3...
[stay here]
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
click to expand contents
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
”
loading