Difference between revisions of "Core.fileSave"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2025.3<br/> '''Class:''' Core<br/> === Description === File saving. <syntaxhighlight lang="lua"> Core.fileSave(filename,buffer,ta...")
 
Line 4: Line 4:
  
 
=== Description ===
 
=== Description ===
File saving.
+
Optimized file saving.
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
Core.fileSave(filename,buffer,table)
 
Core.fileSave(filename,buffer,table)

Revision as of 01:35, 25 March 2025

Available since: Gideros 2025.3
Class: Core

Description

Optimized file saving.

Core.fileSave(filename,buffer,table)

Parameters

filename: (string) path to the file to save to
buffer: (string) buffer name
table: (table) with following options:
async: (boolean) with async loading, default = false
compression: (boolean) with compression, default = false
mode: (string) file mode: "wb", ...