File Glob Syntax
(*) is a wildcard that matches on zero or more characters
Area A_*
will match Area A_Temp but not Area B_Temp*Temp*
will match anything containing "Temp"
(?) is a wildcard that matches exactly one character
Area ?_Temp
will match Area A_Temp and Area B_Temp but not Area 51_Temp
(/) represents a level in the hierarchy
Area A/*
matches any tags within Area A, but not tags further within the hierarchy (Area A/Section 1/Temp will not match)
(**) is a special wildcard that matches any nested path in the hierarchy
**/*
will match any tags at any level within the hierarchyCooling Tower/**
will match all tags within Cooling Tower including deeply nested tags**/*Temp*
will match anything that contains "Temp" at any level of the hierarchy