Difference between revisions of "love.filesystem.append"

(Created page)
 
m
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
success = love.filesystem.append( name, data, size )
+
success, errormsg = love.filesystem.append( name, data, size )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
Line 11: Line 11:
 
{{param|number|size (all)|How many bytes to write.}}
 
{{param|number|size (all)|How many bytes to write.}}
 
=== Returns ===
 
=== Returns ===
{{param|boolean|success|If the operation was successful, or nil if there was an error.}}
+
{{param|boolean|success|True if the operation was successful, or nil if there was an error.}}
 
{{param|string|errormsg|The error message on failure.}}
 
{{param|string|errormsg|The error message on failure.}}
 
== See Also ==
 
== See Also ==

Revision as of 05:07, 16 September 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Append data to an existing file.

Function

Synopsis

success, errormsg = love.filesystem.append( name, data, size )

Arguments

string name
The name (and path) of the file.
string data
The data that should be appended to the file.
number size (all)
How many bytes to write.

Returns

boolean success
True if the operation was successful, or nil if there was an error.
string errormsg
The error message on failure.

See Also

Other Languages