Back

GetPath

Hello World

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 );
}
    Copy     Copy All       Run