Returns true if the given path is on the user's path.
path
Note: this does not check the system path.
bool regIsOnUserPath(String path) { final paths = _getPaths(); return _isOnUserPath(path, paths); }