Product SiteDocumentation Site

8.41. SysIsFileNotContentIndexed (Windows only)


>>-SysIsFileNotContentIndexed(filename)------------------------><

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.27. RexxUtil - SysIsfilenotcontentindexed

if SysIsFileNotContentIndexed(InputFile) then say "File is flagged to be Indexed!"
else say "File is not flagged to be Indexed."