SysIsFileLink

>>-SysIsFileLink(linkname)-------------------------------------><

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

Parameters:

linkname

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

Returns:

0

The link does not exist or it is not a link.

1

The link exists.

Example:

if SysIsFileLink(InputFile) then say "Link Exists!"
else say "Link does not exist."