Difference between revisions of "love.filesystem.remove"

m (Directory removal note)
Line 10: Line 10:
 
{{param|boolean|ok|True if the file/directory was removed, false otherwise.}}
 
{{param|boolean|ok|True if the file/directory was removed, false otherwise.}}
 
== Notes ==
 
== Notes ==
The directory must be empty prior to removal or else it will fail. Simply remove all files and folders in the directory beforehand.
+
The directory must be empty before removal or else it will fail. Simply remove all files and folders in the directory beforehand.
 
== See Also ==
 
== See Also ==
 
* [[parent::love.filesystem]]
 
* [[parent::love.filesystem]]

Revision as of 21:43, 19 December 2013

Removes a file or empty directory.

Function

Synopsis

ok = love.filesystem.remove( name )

Arguments

string name
The file or directory to remove.

Returns

boolean ok
True if the file/directory was removed, false otherwise.

Notes

The directory must be empty before removal or else it will fail. Simply remove all files and folders in the directory beforehand.

See Also


Other Languages