Back

FolderExists

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 );
}
    Copy     Copy All       Run      

string - path to file or folder ( "/absolute/..." or "relative/..." )