Difference between revisions of "love.filesystem.remove"
(clarification: "love.filesystem.remove" remove only EMPTY directories, editorial: unnecessary brackets) |
|||
Line 9: | Line 9: | ||
=== Returns === | === Returns === | ||
{{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 == | ||
+ | The directory must be empty prior to 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:42, 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 prior to removal or else it will fail. Simply remove all files and folders in the directory beforehand.
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