Difference between revisions of "love.filesystem.getSize"
(Created page) |
m |
||
Line 4: | Line 4: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | size = love.filesystem.getSize( filename ) | + | size, errormsg = love.filesystem.getSize( filename ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
Line 10: | Line 10: | ||
=== Returns === | === Returns === | ||
{{param|number|size|The size in bytes of the file, or nil on failure.}} | {{param|number|size|The size in bytes of the file, or nil on failure.}} | ||
− | {{param|string|errormsg|The error message on failure.}} | + | {{param|string|errormsg (nil)|The error message on failure.}} |
== See Also == | == See Also == | ||
* [[parent::love.filesystem]] | * [[parent::love.filesystem]] |
Revision as of 19:15, 11 August 2013
Available since LÖVE 0.9.0 |
This function is not supported in earlier versions. |
Gets the size in bytes of a file.
Function
Synopsis
size, errormsg = love.filesystem.getSize( filename )
Arguments
string filename
- The path and name to a file.
Returns
number size
- The size in bytes of the file, or nil on failure.
string errormsg (nil)
- 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