Back

GetExternalFolder

JS Py
Hello World

GetExternalFolder returns the path to the external micro sdcard of the device.

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

Normally it is something like “/storage/extsd” or “/storage/extSdCard”

See Also: GetInternalFolder

Example - Show External Folder

function OnStart()
{
    var dir = app.GetExternalFolder();
    app.Alert( dir );
}
from native import app

def OnStart():
    dir = app.GetExternalFolder()
    app.Alert(dir)
    Copy     Copy All       Run