On this page
love.filesystem.read
Read the contents of a file.
Function
Synopsis
contents, size = love.filesystem.read( name, size )
Arguments
Returns
Returns (if error on reading)
Function
Available since LÖVE 11.0
This variant is not supported in earlier versions.
Reads the contents of a file into either a string or a FileData object.
Synopsis
contents, size = love.filesystem.read( container, name, size )
Arguments
-
ContainerType container - What type to return the file's contents as.
-
string name - The name (and path) of the file
-
number size (all) - How many bytes to read
Returns
-
value contents - FileData or string containing the file contents.
-
number size - How many bytes have been read.
Returns (if error on reading)
See Also
© 2006–2020 LÖVE Development Team
Licensed under the GNU Free Documentation License, Version 1.3.
https://love2d.org/wiki/love.filesystem.read