FolderExists

The FolderExists function checks if a folder exists in internal or exernal file storage.

 exists = app.FolderExists( fileName );

Example

function OnStart()
{
  exists = app.FolderExists( "/sdcard/IOIOScript" );
  app.ShowPopup( exists );
}
  Copy   Copy All    Run