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)
57
return
_fileSystem
.EnumerateDirectories(path, searchPattern, searchOption);
67
return
_fileSystem
.EnumerateFiles(path, searchPattern, searchOption);
77
return
_fileSystem
.EnumerateFileSystemEntries(path, searchPattern, searchOption);
108
public FileAttributes GetAttributes(string path) =>
_fileSystem
.GetAttributes(path);
110
public DateTime GetLastWriteTimeUtc(string path) =>
_fileSystem
.GetLastWriteTimeUtc(path);
112
public TextReader ReadFile(string path) =>
_fileSystem
.ReadFile(path);
114
public Stream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share) =>
_fileSystem
.GetFileStream(path, mode, access, share);
116
public string ReadFileAllText(string path) =>
_fileSystem
.ReadFileAllText(path);
118
public byte[] ReadFileAllBytes(string path) =>
_fileSystem
.ReadFileAllBytes(path);