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