Difference between revisions of "X file:close"

From GiderosMobile
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
'''Class:''' [[file]]<br/>
+
'''Class:''' [[X File]]<br/>
  
 
=== Description ===
 
=== Description ===
 
Closes file.
 
Closes file.
 +
<syntaxhighlight lang="lua">
 +
file:close()
 +
</syntaxhighlight>
  
 
'''Note:''' files are automatically closed when their handles are garbage collected, but that takes an unpredictable amount of time to happen
 
'''Note:''' files are automatically closed when their handles are garbage collected, but that takes an unpredictable amount of time to happen
<source lang="lua">
 
file:close()
 
</source>
 
  
{{File}}
+
{{X File}}

Latest revision as of 22:38, 24 January 2026

Available since: Gideros 2011.6
Class: X File

Description

Closes file.

file:close()

Note: files are automatically closed when their handles are garbage collected, but that takes an unpredictable amount of time to happen