Product SiteDocumentation Site

8.40. 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 8.26. RexxUtil - SysIsfilelink

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