|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| disk.file.save.array(Filename, ArrayName, Separator) |
Parameters
| STRING | Filename | File to save.
| | ARRAY | ArrayName | Data to be saved.
| | STRING | Separator | Optional. Delimiter to join the array. |
Return value
No value is returned.
Description
| Join an array and save it in a single file. |
MioScript Sample Code
&myArray[] = "First Line Second Line"
disk.file.save.array(path.desktop("myfile.txt"), myArray, str.char(10)) |
|
|
|