Product Site

8.39. SysIsFileNotContentIndexed (Windows only)

Checks if a file is flagged to be indexed by the Index Service. This function does not support wildcard specifications.

Parameters:
filename

The name of the file to check.

Returns:
0

The file is not flagged to be Indexed or does not exist.
1

The file is flagged to be Indexed.
Example 8.30. RexxUtil — SysIsFileNotContentIndexed
if SysIsFileNotContentIndexed(InputFile) then say "File is flagged to be Indexed!"
else say "File is not flagged to be Indexed."