Difference between revisions of "love.filesystem.mkdir"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 
+
Creates a directory.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 13: Line 13:
 
* [[parent::love.filesystem]]
 
* [[parent::love.filesystem]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Creates a directory.}}

Revision as of 16:17, 14 February 2010

Creates a directory.

Function

Synopsis

ok = love.filesystem.mkdir( name )

Arguments

string name
The directory to create.

Returns

boolean ok
True if the directory was created, false if not.

See Also