const syscall.ENOTDIR

9 uses

	syscall (current package)
		zerrors_darwin_amd64.go#L1205: 	ENOTDIR         = Errno(0x14)

	github.com/evanw/esbuild/internal/fs
		filepath.go#L235: 				return "", syscall.ENOTDIR
		fs_real.go#L197: 	if err == syscall.ENOTDIR {
		fs_real.go#L299: 	if err == syscall.ENOTDIR {

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L805: 		if err != syscall.ENOENT && err != syscall.ENOTDIR {

	os
		file.go#L257: 		return &PathError{Op: "mkdir", Path: name, Err: syscall.ENOTDIR}
		file_unix.go#L321: 	if e1 != syscall.ENOTDIR {
		path.go#L25: 		return &PathError{Op: "mkdir", Path: path, Err: syscall.ENOTDIR}

	path/filepath
		symlink.go#L91: 				return "", syscall.ENOTDIR