Difference between revisions of "love.filesystem.append"
m |
(Added missing Data variant) |
||
Line 8: | Line 8: | ||
=== Arguments === | === Arguments === | ||
{{param|string|name|The name (and path) of the file.}} | {{param|string|name|The name (and path) of the file.}} | ||
− | {{param|string|data|The data | + | {{param|string|data|The string data to append to the file.}} |
{{param|number|size (all)|How many bytes to write.}} | {{param|number|size (all)|How many bytes to write.}} | ||
=== Returns === | === Returns === | ||
{{param|boolean|success|True 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.}} | ||
+ | |||
+ | == Function == | ||
+ | === Synopsis === | ||
+ | <source lang="lua"> | ||
+ | success, errormsg = love.filesystem.append( name, data, size ) | ||
+ | </source> | ||
+ | === Arguments === | ||
+ | {{param|string|name|The name (and path) of the file.}} | ||
+ | {{param|Data|data|The Data object to append to the file.}} | ||
+ | {{param|number|size (all)|How many bytes to write.}} | ||
+ | === Returns === | ||
+ | {{param|boolean|success|True if the operation was successful, or nil if there was an error.}} | ||
+ | {{param|string|errormsg|The error message on failure.}} | ||
+ | |||
== See Also == | == See Also == | ||
* [[parent::love.filesystem]] | * [[parent::love.filesystem]] |
Latest revision as of 23:09, 29 December 2013
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Append data to an existing file.
Contents
Function
Synopsis
success, errormsg = love.filesystem.append( name, data, size )
Arguments
string name
- The name (and path) of the file.
string data
- The string data to append 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.
Function
Synopsis
success, errormsg = love.filesystem.append( name, data, size )
Arguments
string name
- The name (and path) of the file.
Data data
- The Data object to append 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
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