Difference between revisions of "Os.rename"
From GiderosMobile
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | '''Available since:''' Gideros 2011.6<br/> | |
− | ''' | + | '''Class:''' [[os]]<br/> |
− | ''' | + | |
− | === | + | === Description === |
− | + | Renames file or directory named oldname to newname. If this function fails, it returns nil plus a string describing the error. | |
<source lang="lua"> | <source lang="lua"> | ||
− | + | os.rename(oldname,newname) | |
</source> | </source> | ||
− | === | + | |
− | '''oldname''': (string) | + | === Parameters === |
− | '''newname''': (string) | + | '''oldname''': (string) current file name<br/> |
+ | '''newname''': (string) new file name<br/> | ||
{{Os}} | {{Os}} |
Revision as of 23:34, 28 October 2022
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