Difference between revisions of "love.filesystem.isFile"

m (1 revision: Importing from potato (again).)
(included link to other languages)
Line 1: Line 1:
 
 
Check whether something is a file.
 
Check whether something is a file.
 
== Function ==
 
== Function ==
Line 14: Line 13:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Check whether something is a file.}}
 
{{#set:Description=Check whether something is a file.}}
 +
== Other Languages ==
 +
{{i18n|love.filesystem.isFile}}

Revision as of 22:58, 3 January 2011

Check whether something is a file.

Function

Synopsis

is_file = love.filesystem.isFile( filename )

Arguments

string filename
The path to a potential file.

Returns

boolean is_file
True if there is a file with the specified name. False otherwise.

See Also

Other Languages