Difference between revisions of "Os.rename"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[os]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/os|os]]<br/>
+
 
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Renames file or directory named oldname to newname. If this function fails, it returns nil, plus a string describing the error.</translate>
+
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)
+
os.rename(oldname,newname)
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''oldname''': (string) <translate>current name of the file</translate> <br/>
+
=== Parameters ===
'''newname''': (string) <translate>new name of the file</translate> <br/>
+
'''oldname''': (string) current file name<br/>
 +
'''newname''': (string) new file name<br/>
  
 
{{Os}}
 
{{Os}}

Revision as of 00:34, 29 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