Checks if the passed fs path leads to a folder.
app.IsFolder(
folder )
→
Boolean
See Also: FolderExists, FileExists
Example - Check /sdcard/ available
function OnStart()
{
var isFolder = app.IsFolder("/sdcard/");
app.Alert( isFolder, "/sdcard/ is Folder:" );
}