var io/fs.ErrNotExist

6 uses

	io/fs (current package)
		fs.go#L139: 	ErrNotExist   = errNotExist()   // "file does not exist"

	embed
		embed.go#L304: 		return nil, &fs.PathError{Op: "open", Path: name, Err: fs.ErrNotExist}

	net/http
		fs.go#L49: 	if errors.Is(originalErr, fs.ErrNotExist) || errors.Is(originalErr, fs.ErrPermission) {
		fs.go#L63: 			return fs.ErrNotExist
		fs.go#L673: 	if errors.Is(err, fs.ErrNotExist) {

	os
		error.go#L24: 	ErrNotExist   = fs.ErrNotExist   // "file does not exist"