(File):write
Write data to a file.
Contents
Function
Synopsis
success, err = File:write( data, size )
Arguments
Returns
boolean success
- Whether the operation was successful.
string err
- The error string if an error occurred.
Function
Synopsis
success, err = File:write( data, size )
Arguments
Returns
boolean success
- Whether the operation was successful.
string errorstr
- The error string if an error occurred.
Notes
Writing to multiple lines: In Windows, some text editors (e.g. Notepad before Windows 10 1809) only treat CRLF ("\r\n") as a new line.
--example
f = love.filesystem.newFile("note.txt")
f:open("w")
for i = 1, 10 do
f:write("This is line "..i.."!\r\n")
end
f:close()
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info