DLiteScript

io.appendFile

Appends data to a given file without replacing the original content.

Examples

1
io.appendFile("data.txt", "This is a new line.") // Appends "This is a new line." to "data.txt"
Improve this page