// InDir checks whether path is in the file tree rooted at dir. // It checks only the lexical form of the file names. // It does not consider symbolic links. // // Copied from go/src/cmd/go/internal/search/search.go. func InDir(dir, path string) bool { … }