Checks if a given folder exits or not.
app.FolderExists(
folder )
→
Boolean
See Also: MakeFolder, CopyFolder, RenameFolder
Example - Example
function OnStart()
{
if(app.FolderExists("myFolder"))
app.ShowPopup("myFolder exists!");
else
app.ShowPopup("myFolder does not exist!");
}
from native import app
def OnStart():
if app.FolderExists("myFolder"):
app.ShowPopup("myFolder exists!")
else:
app.ShowPopup("myFolder does not exist!")