save_file
Save a string to a file
save_file(
filepath,
content,
[append=false]
)
Save a string to a file
Syntaxe
save_file("output.txt", "Hello World", append=true);
Arguments
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
filepath | yes | - | Path to output file | |
content | yes | - | Content to save (string) | |
append | - | false | Append content to file |