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