1 implementation of FileExists
Microsoft.CodeAnalysis (1)
FileSystem\ICommonCompilerFileSystem.cs (1)
61
public bool
FileExists
(string filePath) => File.Exists(filePath);
1 reference to FileExists
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.CompilerRelativePathResolver.cs (1)
32
protected override bool FileExists(string fullPath) => FileSystem.
FileExists
(fullPath);