IsDirectory checks if the given directory exists.
Return Value
bool
Parameters
ssDirectory is the directory.
Example
if (IsDirectory("c:/Temp")) {
MessageBox("c:/Temp exists");
} else {
MessageBox("c:/Temp does not exist");
}
See also
id-1833884