Difference between revisions of "Application:getNativePath"

From GiderosMobile
m (very tiny changes to hgy29 great work on updating gideros wiki with his new additions :-) thank you hgy29)
Line 1: Line 1:
 +
__NOTOC__
 
'''Available since:''' Gideros 2021.10<br/>
 
'''Available since:''' Gideros 2021.10<br/>
 
'''Class:''' [[Application]]<br/>
 
'''Class:''' [[Application]]<br/>
Line 13: Line 14:
 
=== Return values ===
 
=== Return values ===
 
'''Returns''' (string) the native path of the given resource<br/>
 
'''Returns''' (string) the native path of the given resource<br/>
 +
 +
=== Example ===
 +
<source 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>
  
 
{{Application}}
 
{{Application}}

Revision as of 12:35, 2 July 2022

Available since: Gideros 2021.10
Class: Application

Description

Returns the system path for a given resource.

(string) = application:getNativePath(path)

Parameters

path: (string) path to an application local resource

Return values

Returns (string) the native path of the given resource

Example

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"