1 write to _fileSystem
Microsoft.Build (1)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
33_fileSystem = fileSystem;
9 references to _fileSystem
Microsoft.Build (9)
FileSystem\DirectoryCacheFileSystemWrapper.cs (9)
59return _fileSystem.EnumerateDirectories(path, searchPattern, searchOption); 69return _fileSystem.EnumerateFiles(path, searchPattern, searchOption); 79return _fileSystem.EnumerateFileSystemEntries(path, searchPattern, searchOption); 110public FileAttributes GetAttributes(string path) => _fileSystem.GetAttributes(path); 112public DateTime GetLastWriteTimeUtc(string path) => _fileSystem.GetLastWriteTimeUtc(path); 114public TextReader ReadFile(string path) => _fileSystem.ReadFile(path); 116public Stream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share) => _fileSystem.GetFileStream(path, mode, access, share); 118public string ReadFileAllText(string path) => _fileSystem.ReadFileAllText(path); 120public byte[] ReadFileAllBytes(string path) => _fileSystem.ReadFileAllBytes(path);