Difference between revisions of "love.filesystem.read"

m (1 revision: Importing from potato (again).)
m (Function: fixed love 11.0 version number)
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
Read the contents of a file.
  
Read the contents of a file
 
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 7: Line 7:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 +
{{param|string|name|The name (and path) of the file.}}
 +
{{param|number|size (all)|How many bytes to read.}}
 +
=== Returns ===
 +
{{param|string|contents|The file contents.}}
 +
{{param|number|size|How many bytes have been read.}}
 +
=== Returns (if error on reading) ===
 +
{{param|nil|contents|returns nil as content.}}
 +
{{param|string|error|returns an error message.}}
 +
 +
== Function ==
 +
{{newin|[[11.0]]|110|type=variant}}
 +
Reads the contents of a file into either a string or a [[FileData]] object.
 +
=== Synopsis ===
 +
<source lang="lua">
 +
contents, size = love.filesystem.read( container, name, size )
 +
</source>
 +
=== Arguments ===
 +
{{param|ContainerType|container|What type to return the file's contents as.}}
 
{{param|string|name|The name (and path) of the file}}
 
{{param|string|name|The name (and path) of the file}}
 
{{param|number|size (all)|How many bytes to read}}
 
{{param|number|size (all)|How many bytes to read}}
 
=== Returns ===
 
=== Returns ===
{{param|string|contents|The file contents}}
+
{{param|value|contents|[[FileData]] or string containing the file contents.}}
{{param|number|size|How many bytes have been read}}
+
{{param|number|size|How many bytes have been read.}}
 +
=== Returns (if error on reading) ===
 +
{{param|nil|contents|returns nil as content.}}
 +
{{param|string|error|returns an error message.}}
 +
 
 
== See Also ==
 
== See Also ==
 
* [[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}}
 +
== Other Languages ==
 +
{{i18n|love.filesystem.read}}

Revision as of 15:41, 18 April 2018

Read the contents of a file.

Function

Synopsis

contents, size = love.filesystem.read( name, size )

Arguments

string name
The name (and path) of the file.
number size (all)
How many bytes to read.

Returns

string contents
The file contents.
number size
How many bytes have been read.

Returns (if error on reading)

nil contents
returns nil as content.
string error
returns an error message.

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)

nil contents
returns nil as content.
string error
returns an error message.

See Also


Other Languages