Difference between revisions of "Os.tmpname"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Returns a string with a file name that can be used for a temporary file. The file must be explicitly o...")
 
Line 8: Line 8:
 
  When possible, you may prefer to use `io.tmpfile`, which automatically removes the file when the program ends.
 
  When possible, you may prefer to use `io.tmpfile`, which automatically removes the file when the program ends.
 
<source lang="lua">
 
<source lang="lua">
(string), = os.tmpname()
+
(string) = os.tmpname()
 
</source>
 
</source>
 
'''Returns''' (string) name for the temporary file<br/>
 
'''Returns''' (string) name for the temporary file<br/>

Revision as of 11:18, 23 August 2018

Available since: Gideros 2011.6

Description

Returns a string with a file name that can be used for a temporary file. The file must be explicitly opened before its use and explicitly removed when no longer needed.

On some systems (POSIX), this function also creates a file with that name, to avoid security risks. (Someone else might create the file with wrong permissions in the time between getting the name and creating the file.) You still have to open the file to use it and to remove it (even if you do not use it). 
When possible, you may prefer to use `io.tmpfile`, which automatically removes the file when the program ends.
(string) = os.tmpname()

Returns (string) name for the temporary file