Difference between revisions of "Application:getNativePath"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2021.10<br/> '''Class:''' Application<br/> === Description === Returns the system path for a given resource. <source lang="lua...")
 
m (Text replacement - "</source" to "</syntaxhighlight")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
__NOTOC__
 
'''Available since:''' Gideros 2021.10<br/>
 
'''Available since:''' Gideros 2021.10<br/>
'''Class:''' [[Application|Application]]<br/>
+
'''Class:''' [[Application]]<br/>
  
 
=== Description ===
 
=== Description ===
 
Returns the system path for a given resource.
 
Returns the system path for a given resource.
 
+
<syntaxhighlight lang="lua">
<source lang="lua">
 
 
(string) = application:getNativePath(path)
 
(string) = application:getNativePath(path)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
'''path''': (string) Path to an application local resource
+
'''path''': (string) path to an application local resource<br/>
  
 
=== Return values ===
 
=== Return values ===
'''Returns''' (string) The native path of the given resource
+
'''Returns''' (string) the native path of the given resource<br/>
 +
 
 +
=== 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"
 +
</syntaxhighlight>
  
 
{{Application}}
 
{{Application}}

Latest revision as of 18:09, 12 July 2023

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"