lovr.filesystem.append
EditAppends content to the end of a file.
Arguments
Name | Type | Description |
filename | string | The file to append to. |
content | string | A string to write to the end of the file. |
Returns
Name | Type | Description |
bytes | number | The number of bytes actually appended to the file. |
Arguments
Name | Type | Description |
filename | string | The file to append to. |
blob | Blob | A Blob containing data to append to the file. |
Returns
Name | Type | Description |
bytes | number | The number of bytes actually appended to the file. |
Notes
If the file does not exist, it is created.