7 references to FileSystemInfoKind
Microsoft.TemplateEngine.Abstractions (1)
Mount\IFileSystemInfo.cs (1)
26FileSystemInfoKind Kind { get; }
Microsoft.TemplateEngine.Edge (6)
Mount\Archive\ZipFileFile.cs (2)
21public override bool Exists => _entry != null || (_mountPoint.Universe.TryGetValue(FullPath, out var info) && info.Kind == FileSystemInfoKind.File); 27if (!_mountPoint.Universe.TryGetValue(FullPath, out var info) || info.Kind != FileSystemInfoKind.File || !info.Exists)
Mount\DirectoryBase.cs (1)
11: base(mountPoint, fullPath, name, FileSystemInfoKind.Directory)
Mount\FileBase.cs (1)
11: base(mountPoint, fullPath, name, FileSystemInfoKind.File)
Mount\FileSystemInfoBase.cs (2)
12protected FileSystemInfoBase(IMountPoint mountPoint, string fullPath, string name, FileSystemInfoKind kind) 24public FileSystemInfoKind Kind { get; }