Back

GetExternalFolder

The GetExternalFolder method returns the full path of the external storage (this is usually a removable sdcard).

 app.GetExternalFolder();

Example

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