4 instantiations of InMemoryDirectoryInfo
Microsoft.Extensions.FileSystemGlobbing (4)
InMemoryDirectoryInfo.cs (3)
93new InMemoryDirectoryInfo(Path.GetDirectoryName(FullName)!, _files, true, _comparisonType); 130yield return new InMemoryDirectoryInfo(item.Key, item.Value, true, _comparisonType); 160return new InMemoryDirectoryInfo(normPath, _files, true, _comparisonType, isParentPath);
MatcherExtensions.cs (1)
117return matcher.Execute(new InMemoryDirectoryInfo(rootDir, files, matcher.ComparisonType));
4 references to InMemoryDirectoryInfo
Microsoft.Extensions.FileSystemGlobbing (4)
InMemoryDirectoryInfo.cs (2)
23/// Initializes a new instance of the <see cref="InMemoryDirectoryInfo" /> class with the root directory and files given. 33/// Initializes a new instance of the <see cref="InMemoryDirectoryInfo" /> class with the root directory and files given.
Internal\InMemoryFileInfo.cs (2)
11private readonly InMemoryDirectoryInfo _parent; 13public InMemoryFileInfo(string file, InMemoryDirectoryInfo parent)