/**
  * check if the path is special or not
  *
  * @param path the input path
  * @return true if path is special and false if not
  */
 public boolean isSpecialPath(String path) {
   return dataTree.isSpecialPath(path);
 }