6 references to Universe
Microsoft.TemplateEngine.Edge (6)
Mount\Archive\ZipFileDirectory.cs (2)
19public override bool Exists => _mountPoint.Universe.ContainsKey(FullPath); 26return _mountPoint.Universe.Values.Where(x => x.FullPath.StartsWith(FullPath, StringComparison.Ordinal) && x.FullPath.Length != FullPath.Length && r.IsMatch(x.Name)).Where(x => searchOption == SearchOption.AllDirectories || x.FullPath.TrimEnd('/').Count(y => y == '/') == FullPath.Count(y => y == '/'));
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\Archive\ZipFileMountPoint.cs (2)
97if (Universe.TryGetValue(path, out IFileSystemInfo info)) 101else if (Universe.TryGetValue(path + "/", out info))