Returns the path to the local storage folder of the APK.
app.GetPath() → String: path to file or folder ( “/absolute/...” or “relative/...” )
See Also: GetAppPath, GetPrivateFolder
Example - Show App Path
function OnStart()
{
var path = app.GetPath();
app.Alert( path );
}
from native import app
def OnStart():
path = app.GetPath()
app.Alert(path)