SysIsFileDirectory

>>-SysIsFileDirectory(dirname)---------------------------------><

Checks for the existence of a subdirectory. This function does not support wildcard specifications.

Parameters:

dirname

The name of the subdirectory to check for the existence of.

Returns:

0

The subdirectory does not exist.

1

The subdirectory exists.

Example:

if SysIsFileDirectory(InputFile) then say "Subdirectory Exists!"
else say "Subdirectory does not exist."