FolderExists checks if a folder exists in the internal or external storage and returns "true" or "false".
app.FolderExists(
folder ) ->
boolean
Example - Example
function OnStart()
{
exists = app.FolderExists( "/sdcard/IOIOScript" );
app.ShowPopup( exists );
}