lovr.filesystem.write
Write to a file.
bytes = lovr.filesystem.write(filename, content)
Arguments
Name | Type | Description |
filename | string | The file to write to. |
content | string | A string to write to the file. |
Returns
Name | Type | Description |
bytes | number | The number of bytes written. |
Notes
If the file does not exist, it is created.
If the file already has data in it, it will be replaced with the new content.
See also
lovr.filesystem.append
lovr.filesystem.read
lovr.filesystem