IsParent(
path:parent,
path:child
)
→ int
Tests whether parent is a parent of child.
If not, returns 0. Otherwise, returns the number of levels that parent is above child.
Example:
parentPath = "C:\Windows"; childPath = "C:\Windows\System32"; Output( IsParent(parentPath, childPath) ); --> 1