func os.IsNotExist

24 uses

	os (current package)
		dir_unix.go#L118: 			if IsNotExist(err) {
		dir_unix.go#L129: 			if IsNotExist(err) {
		error.go#L92: func IsNotExist(err error) bool {
		file_unix.go#L208: 		if _, err := Stat(name); IsNotExist(err) {
		removeall_at.go#L30: 	if err == nil || IsNotExist(err) {
		removeall_at.go#L39: 	if IsNotExist(err) {
		removeall_at.go#L62: 	if err == nil || IsNotExist(err) {
		removeall_at.go#L80: 		if IsNotExist(statErr) {
		removeall_at.go#L99: 			if IsNotExist(err) {
		removeall_at.go#L113: 				if IsNotExist(readErr) {
		removeall_at.go#L155: 	if unlinkError == nil || IsNotExist(unlinkError) {
		tempfile.go#L104: 		if IsNotExist(err) {
		tempfile.go#L105: 			if _, err := Stat(dir); IsNotExist(err) {

	crypto/x509
		root_unix.go#L47: 		if firstErr == nil && !os.IsNotExist(err) {
		root_unix.go#L64: 			if firstErr == nil && !os.IsNotExist(err) {

	github.com/go-pg/migrations/v8
		collection.go#L163: 	if os.IsNotExist(err) {
		collection.go#L171: 	if _, err := f.Stat(); os.IsNotExist(err) {
		collection.go#L753: 	if !os.IsNotExist(err) {

	go.pact.im/x/goupdate
		workspaces.go#L94: 	if err := os.Remove(filepath.Join(w.Dir, "go.work.sum")); err != nil && !os.IsNotExist(err) {

	go.pact.im/x/zapjournal
		zapjournal_linux.go#L22: 	case os.IsNotExist(err):

	net
		conf.go#L102: 	if confVal.resolv.err != nil && !os.IsNotExist(confVal.resolv.err) &&
		conf.go#L149: 		if os.IsNotExist(c.resolv.err) {
		conf.go#L201: 	if os.IsNotExist(nss.err) || (nss.err == nil && len(srcs) == 0) {

	testing
		testing.go#L1057: 		nonExistent = os.IsNotExist(err)