DLiteScript

io.createFile

Creates an empty file. Returns an error if the file already exists.

Examples

1
io.createFile("data.txt") // creates an empty file called "data.txt"
Improve this page