Difference between revisions of "Core.fileSave"

From GiderosMobile
 
Line 6: Line 6:
 
Optimized file saving.
 
Optimized file saving.
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
Core.fileSave(filename,buffer,table)
+
Core.fileSave(filename,data,options)
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
 
'''filename''': (string) path to the file to save to<br/>
 
'''filename''': (string) path to the file to save to<br/>
'''buffer''': (string) buffer name<br/>
+
'''data''': (string) a lua string or a lua buffer (buffer=true option when loading)<br/>
'''table''': (table) with following options:<br/>
+
'''options''': (table) any of the following options:<br/>
 
&emsp;'''async''': (boolean) with async loading, '''default = false'''<br/>
 
&emsp;'''async''': (boolean) with async loading, '''default = false'''<br/>
 
&emsp;'''compression''': (boolean) with compression, '''default = false'''<br/>
 
&emsp;'''compression''': (boolean) with compression, '''default = false'''<br/>
 
&emsp;'''mode''': (string) file mode: "wb", ...<br/>
 
&emsp;'''mode''': (string) file mode: "wb", ...<br/>
 +
 +
Operation can be made asynchronous to rendering loop, preventing dropping FPS in your games (async=true option). Only available if the call is made from an async call (see Core.asyncCall)
  
 
{{Core}}
 
{{Core}}

Latest revision as of 20:43, 25 March 2025

Available since: Gideros 2025.3
Class: Core

Description

Optimized file saving.

Core.fileSave(filename,data,options)

Parameters

filename: (string) path to the file to save to
data: (string) a lua string or a lua buffer (buffer=true option when loading)
options: (table) any of the following options:
async: (boolean) with async loading, default = false
compression: (boolean) with compression, default = false
mode: (string) file mode: "wb", ...

Operation can be made asynchronous to rendering loop, preventing dropping FPS in your games (async=true option). Only available if the call is made from an async call (see Core.asyncCall)