17 references to ENOENT
System.Private.CoreLib (17)
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)
63=> 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: 592Interop.Error error = _state == InitializedNotExistsNotADir ? Interop.Error.ENOTDIR : Interop.Error.ENOENT;
src\libraries\System.Private.CoreLib\src\System\IO\FileSystem.Unix.cs (12)
103if (errorInfo.Error == Interop.Error.ENOENT) 159if (errno.Error != Interop.Error.ENOENT) 175if (errno.Error == Interop.Error.ENOENT) 248case Interop.Error.ENOENT: 266fileExistsError.Error == Interop.Error.ENOENT) 309else if (errorInfo.Error == Interop.Error.ENOENT) // Some parts of the path don't exist yet. 349if (errorInfo.Error == Interop.Error.ENOENT) 458case Interop.Error.ENOENT: 540else if (errorInfo.Error == Interop.Error.ENOENT) 557else if (existErr.Error == Interop.Error.ENOENT) 589throw Interop.GetExceptionForIoErrno(new Interop.ErrorInfo(Interop.Error.ENOENT), fullPath); 608throw Interop.GetExceptionForIoErrno(new Interop.ErrorInfo(Interop.Error.ENOENT), fullPath);