1 implementation of DirectoryExists
MSBuildTaskHost (1)
FileSystem\MSBuildTaskHostFileSystem.cs (1)
36
public bool
DirectoryExists
(string path)
7 references to DirectoryExists
MSBuildTaskHost (7)
BuildEnvironmentHelper.cs (2)
273
vsVersion != CurrentVisualStudioVersion || !FileSystems.Default.
DirectoryExists
(vsInstallDir))
298
.Where(i => i.Version.Major == v.Major && FileSystems.Default.
DirectoryExists
(i.Path))
FileUtilities.cs (5)
220
if (DefaultFileSystem.
DirectoryExists
(cacheDirectory))
927
if (DefaultFileSystem.
DirectoryExists
(path))
1034
? FileExistenceCache.GetOrAdd(fullPath, fullPath => fileSystem.
DirectoryExists
(fullPath))
1035
: fileSystem.
DirectoryExists
(fullPath);
1528
if (!string.IsNullOrEmpty(directoryPath) && !DefaultFileSystem.
DirectoryExists
(directoryPath))