Back

GetExternalFolder

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

  app.GetExternalFolder() → string: path to file or folder ( "/absolute/..." or "relative/..." )

Normally it is "/storage/extsd"

Example - Example



function OnStart()
{
    fldr = app.GetExternalFolder();
    app.ShowPopup( fldr );
}
    Copy     Copy All       Run