lovr.filesystem.append
EditAppends content to the end of a file.
success, error = lovr.filesystem.append(filename, content)Arguments
| Name | Type | Description |
| filename | string | The file to append to. |
| content | string | Blob | A string or Blob to append to the file. |
Returns
| Name | Type | Description |
| success | boolean | Whether the operation was successful. |
| error | string | nil |
The error message, or nil if there was no error.
|
Notes
If the file does not exist, it is created.