Difference between revisions of "love.filesystem.read"
m (→Function: fixed love 11.0 version number) |
m (→See Also: Added love.filesystem.lines.) |
||
Line 35: | Line 35: | ||
== See Also == | == See Also == | ||
+ | * [[love.filesystem.lines]] | ||
* [[parent::love.filesystem]] | * [[parent::love.filesystem]] | ||
+ | |||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Read the contents of a file.}} | {{#set:Description=Read the contents of a file.}} | ||
{{#set:Since=000}} | {{#set:Since=000}} | ||
+ | |||
== Other Languages == | == Other Languages == | ||
{{i18n|love.filesystem.read}} | {{i18n|love.filesystem.read}} |
Revision as of 09:58, 13 August 2022
Read the contents of a file.
Contents
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
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