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