Difference between revisions of "Application:getNativePath"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Returns the system path for a given resource.
 
Returns the system path for a given resource.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = application:getNativePath(path)
 
(string) = application:getNativePath(path)
 
</source>
 
</source>
Line 16: Line 16:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
local imgpath = application:getNativePath("gfx/myimage.png") -- image in /gfx project folder
 
local imgpath = application:getNativePath("gfx/myimage.png") -- image in /gfx project folder
 
print(imgpath) -- "C:/Users/xxx/AppData/Local/Temp/gideros/YYY/resource/gfx/myimage.png"
 
print(imgpath) -- "C:/Users/xxx/AppData/Local/Temp/gideros/YYY/resource/gfx/myimage.png"

Revision as of 17:30, 12 July 2023

Available since: Gideros 2021.10
Class: Application

Description

Returns the system path for a given resource. <syntaxhighlight lang="lua"> (string) = application:getNativePath(path) </source>

Parameters

path: (string) path to an application local resource

Return values

Returns (string) the native path of the given resource

Example

<syntaxhighlight lang="lua"> local imgpath = application:getNativePath("gfx/myimage.png") -- image in /gfx project folder print(imgpath) -- "C:/Users/xxx/AppData/Local/Temp/gideros/YYY/resource/gfx/myimage.png" </source>