Array.load

Function/Meaning

Read the array from a file.

Type
Arrayclassmethod of
Syntax
load(storage:string, mode:string=null) :Array
Arguments
storage

File name to read

mode

Specifies the mode string when reading the file.
If you specify the offset in decimal after "o", it will be read from that byte position in the file.

Return value

Returns the object itself of this Array class.

Explanation

Read an array from a text file.
The text of the file goes line by line into each element, and finally the count property is the same as the number of lines in the file.