9 references to NodeType
System.Private.CoreLib (9)
src\libraries\Common\src\Interop\Unix\System.Native\Interop.ReadDir.cs (1)
31
internal
NodeType
InodeType;
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEntry.Unix.cs (5)
46
bool isDirectory = directoryEntry.InodeType == Interop.Sys.
NodeType
.DT_DIR;
47
bool isSymlink = directoryEntry.InodeType == Interop.Sys.
NodeType
.DT_LNK;
48
bool isUnknown = directoryEntry.InodeType == Interop.Sys.
NodeType
.DT_UNKNOWN;
63
entry._directoryEntry.InodeType = Interop.Sys.
NodeType
.DT_LNK;
158
internal bool IsSymbolicLink => _directoryEntry.InodeType == Interop.Sys.
NodeType
.DT_LNK;
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.Unix.NonAndroid.cs (3)
300
if (dirent.InodeType == Interop.Sys.
NodeType
.DT_DIR)
305
else if (dirent.InodeType == Interop.Sys.
NodeType
.DT_LNK || dirent.InodeType == Interop.Sys.
NodeType
.DT_UNKNOWN)