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