1 implementation of Exists
Microsoft.TemplateEngine.Edge (1)
Mount\FileSystemInfoBase.cs (1)
20public abstract bool Exists { get; }
6 references to Exists
Microsoft.TemplateEngine.Cli (1)
HostSpecificDataLoader.cs (1)
67if (file != null && file.Exists)
Microsoft.TemplateEngine.Edge (5)
Mount\Archive\ZipFileFile.cs (1)
27if (!_mountPoint.Universe.TryGetValue(FullPath, out var info) || info.Kind != FileSystemInfoKind.File || !info.Exists)
Mount\Archive\ZipFileMountPoint.cs (1)
113if (file != null && file.Exists)
Mount\Archive\ZipFileMountPointFactory.cs (1)
55if (file == null || !file.Exists)
Mount\FileSystemInfoBase.cs (1)
58return (_parent?.Exists ?? false) ? _parent : null;
Settings\TemplateCache.cs (1)
228if (hostFile == null || !hostFile.Exists)