Difference between revisions of "Io.tmpfile"

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>Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.</translate>
 
<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 ===
+
=== <translate>Return values</translate> ===
'''Returns''' (file) <translate>file object for temporary file</translate><br/>
+
'''<translate>Returns</translate>''' (file) <translate>file object for temporary file</translate><br/>

Revision as of 08:28, 24 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