Difference between revisions of "Io.tmpfile"
From GiderosMobile
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | + | '''Available since:''' Gideros 2011.6<br/> | |
| − | ''' | + | '''Class:''' [[io]]<br/> |
| − | ''' | + | |
| − | === | + | === Description === |
| − | + | Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends. | |
<source lang="lua"> | <source lang="lua"> | ||
(file) = io.tmpfile() | (file) = io.tmpfile() | ||
</source> | </source> | ||
| − | === | + | |
| − | ''' | + | === Return values === |
| + | '''Returns''' (file) file object for temporary file<br/> | ||
{{Io}} | {{Io}} | ||
Revision as of 06:21, 7 December 2020
Available since: Gideros 2011.6
Class: io
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