3 implementations of DirectoryExists
Microsoft.Build.Engine.OM.UnitTests (3)
CachingFileSystemWrapper.cs (1)
39
public bool
DirectoryExists
(string path)
ManagedFileSystem.cs (1)
137
public virtual bool
DirectoryExists
(string path)
MSBuildOnWindowsFileSystem.cs (1)
71
public bool
DirectoryExists
(string path)
10 references to DirectoryExists
Microsoft.Build.Engine.OM.UnitTests (10)
BuildEnvironmentHelper.cs (2)
274
vsVersion != CurrentVisualStudioVersion || !FileSystems.Default.
DirectoryExists
(vsInstallDir))
299
.Where(i => i.Version.Major == v.Major && FileSystems.Default.
DirectoryExists
(i.Path))
CachingFileSystemWrapper.cs (1)
41
return CachedExistenceCheck(path, p => _fileSystem.
DirectoryExists
(p));
FileUtilities.cs (6)
207
if (DefaultFileSystem.
DirectoryExists
(cacheDirectory))
683
return (shouldCheckDirectory && DefaultFileSystem.
DirectoryExists
(Path.Combine(baseDirectory, directory.ToString())))
900
if (DefaultFileSystem.
DirectoryExists
(path))
1007
? FileExistenceCache.GetOrAdd(fullPath, fullPath => fileSystem.
DirectoryExists
(fullPath))
1008
: fileSystem.
DirectoryExists
(fullPath);
1501
if (!string.IsNullOrEmpty(directoryPath) && !DefaultFileSystem.
DirectoryExists
(directoryPath))
TempFileUtilities.cs (1)
234
if (FileSystems.Default.
DirectoryExists
(Path))