1 write to InodeType
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEntry.Unix.cs (1)
67entry._directoryEntry.InodeType = Interop.Sys.NodeType.DT_LNK;
4 references to InodeType
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\Enumeration\FileSystemEntry.Unix.cs (4)
50bool isDirectory = directoryEntry.InodeType == Interop.Sys.NodeType.DT_DIR; 51bool isSymlink = directoryEntry.InodeType == Interop.Sys.NodeType.DT_LNK; 52bool isUnknown = directoryEntry.InodeType == Interop.Sys.NodeType.DT_UNKNOWN; 164internal bool IsSymbolicLink => _directoryEntry.InodeType == Interop.Sys.NodeType.DT_LNK;