IsDirectoryΒΆ

IsDirectory checks if the given directory exists.

bool = IsDirectory(ssDirectory)

Return Value

bool

Parameters

ssDirectory

ssDirectory is the directory.

Example

if (IsDirectory("c:/Temp")) {
    MessageBox("c:/Temp exists");
} else {
    MessageBox("c:/Temp does not exist");
}

See also

Overview Files

id-1833884