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