Back

GetInternalFolder

Hello World

Get devices internal “/sdcard/” path.

app.GetInternalFolder() → String: path to file or folder ( “/absolute/...” or “relative/...” )

Normally it should be “/storage/emulated/legacy”.

See Also: GetExternalFolder

Example - Show Internal Storage Path

function OnStart()
{
    var dir = app.GetInternalFolder();
    app.Alert( dir );
}
    Copy     Copy All       Run