Add the optional section dependencies to prevent a more general rule from being triggered with a more specific rule. For example, if there is one rule to monitor for a single text file in C:\test\
files { Include “C:\\test\\abc.txt” }
as well as a rule to monitor all the text files in C:\test\
files { Include “C:\\test\\*.txt” }
Add the section dependencies to the more specific rule, which tells the system not to trigger the more general rule if the specific rule is triggered.
files { Include “C:\\test\\abc.txt” }
dependencies –c –d “the general rule”