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