2 overrides of Exists
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IO\DirectoryInfo.cs (1)
231public override bool Exists
src\libraries\System.Private.CoreLib\src\System\IO\FileInfo.cs (1)
113public override bool Exists
4 references to Exists
Microsoft.AspNetCore.DataProtection (1)
Repositories\FileSystemXmlRepository.cs (1)
209Debug.Assert(fileSystemInfo.Exists, "Having previously been deleted should not have caused an exception");
Microsoft.CodeAnalysis.Features (1)
SymbolSearch\Windows\SymbolSearchUpdateEngine.IOService.cs (1)
18public bool Exists(FileSystemInfo info) => info.Exists;
Microsoft.Extensions.FileProviders.Physical (2)
Internal\FileSystemInfoHelper.cs (2)
22else if (fileSystemInfo.Exists && 57if (targetInfo != null && targetInfo.Exists)