ExtractZip

Family: File · 2 forms

What it does

ExtractZip takes zipfilename (a string) and path (a string), and returns nothing. That is the first of 2 forms.

Syntax

1
ExtractZip(zipfilename string, path string)
2
ExtractZip(zipfilename string, path string, password string)

Parameters

NameTypeIn forms
zipfilenamestringall
pathstringall
passwordstring2

Every form returns

nothing

Example · generated

Form 1, the short one

ExtractZip("assets/data.dat", "assets/data.dat")DO  Sync()LOOP

Form 2, with every argument

ExtractZip("assets/data.dat", "assets/data.dat", "value")DO  Sync()LOOP

ExtractZip is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

Related commands

61 commands in File