PLAYGROUND (experimental)

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

NameTypeRequiredDefaultDescription
filepathyes-Path to output file
contentyes-Content to save (string)
append-falseAppend content to file