Difference between revisions of "Io.tmpfile"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 
=== Description ===
 
=== Description ===
Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.
+
<translate>Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.</translate>
 
<source lang="lua">
 
<source lang="lua">
 
(file) = io.tmpfile()
 
(file) = io.tmpfile()
 
</source>
 
</source>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (file) file object for temporary file<br/>
+
'''Returns''' (file) <translate>file object for temporary file</translate><br/>

Revision as of 14:33, 23 August 2018

Available since: Gideros 2011.6

Description

Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.

(file) = io.tmpfile()

Return values

Returns (file) file object for temporary file