18 references to ENOENT
System.Private.CoreLib (18)
src\libraries\Common\src\Interop\Linux\procfs\Interop.ProcMountInfo.cs (1)
63return Error.ENOENT;
src\libraries\Common\src\Interop\Unix\Interop.IOErrors.cs (1)
120case Error.ENOENT:
src\libraries\System.Private.CoreLib\src\Microsoft\Win32\SafeHandles\SafeFileHandle.Unix.cs (1)
394if (error.Error == Interop.Error.ENOENT)
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEnumerator.Unix.cs (1)
59=> info.Error == Interop.Error.ENOTDIR || info.Error == Interop.Error.ENOENT;
src\libraries\System.Private.CoreLib\src\System\IO\FileStatus.Unix.cs (2)
515case Interop.Error.ENOENT: 590Interop.Error error = _state == InitializedNotExistsNotADir ? Interop.Error.ENOTDIR : Interop.Error.ENOENT;
src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (12)
101if (errorInfo.Error == Interop.Error.ENOENT) 157if (errno.Error != Interop.Error.ENOENT) 173if (errno.Error == Interop.Error.ENOENT) 246case Interop.Error.ENOENT: 264fileExistsError.Error == Interop.Error.ENOENT) 307else if (errorInfo.Error == Interop.Error.ENOENT) // Some parts of the path don't exist yet. 347if (errorInfo.Error == Interop.Error.ENOENT) 456case Interop.Error.ENOENT: 538else if (errorInfo.Error == Interop.Error.ENOENT) 555else if (existErr.Error == Interop.Error.ENOENT) 587throw Interop.GetExceptionForIoErrno(new Interop.ErrorInfo(Interop.Error.ENOENT), fullPath); 606throw Interop.GetExceptionForIoErrno(new Interop.ErrorInfo(Interop.Error.ENOENT), fullPath);