Implemented interface member:
property
Exists
Microsoft.TemplateEngine.Abstractions.Mount.IFileSystemInfo.Exists
4 overrides of Exists
Microsoft.TemplateEngine.Edge (4)
Mount\Archive\ZipFileDirectory.cs (1)
19
public override bool
Exists
=> _mountPoint.Universe.ContainsKey(FullPath);
Mount\Archive\ZipFileFile.cs (1)
21
public override bool
Exists
=> _entry != null || (_mountPoint.Universe.TryGetValue(FullPath, out var info) && info.Kind == FileSystemInfoKind.File);
Mount\FileSystem\FileSystemDirectory.cs (1)
24
public override bool
Exists
=> _fileSystem.DirectoryExists(_physicalPath);
Mount\FileSystem\FileSystemFile.cs (1)
18
public override bool
Exists
=> MountPoint.EnvironmentSettings.Host.FileSystem.FileExists(_physicalPath);