5 instantiations of InMemoryDirectoryInfo
Microsoft.Extensions.FileSystemGlobbing (5)
InMemoryDirectoryInfo.cs (4)
93new InMemoryDirectoryInfo(Path.GetDirectoryName(FullName)!, _files, true, _comparisonType); 130yield return new InMemoryDirectoryInfo(item.Key, item.Value, true, _comparisonType); 148return new InMemoryDirectoryInfo(Path.Combine(FullName, path), _files, true, _comparisonType); 153return new InMemoryDirectoryInfo(normPath, _files, true, _comparisonType);
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)