Difference between revisions of "Os.rename"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Renames file or directory named oldname to newname. If this function fails, it returns nil plus a string describing the error. | Renames file or directory named oldname to newname. If this function fails, it returns nil plus a string describing the error. | ||
− | < | + | <syntaxhighlight lang="lua"> |
os.rename(oldname,newname) | os.rename(oldname,newname) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2011.6
Class: os
Description
Renames file or directory named oldname to newname. If this function fails, it returns nil plus a string describing the error.
os.rename(oldname,newname)
Parameters
oldname: (string) current file name
newname: (string) new file name