Back

FolderExists

Hello World

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!");

}
    Copy     Copy All       Run      
string: path to file or folder ( “/absolute/...” or “relative/...” )