2 implementations of FileExists
Microsoft.Arcade.Common (1)
FileSystem.cs (1)
17public bool FileExists(string path) => File.Exists(path);
Microsoft.Arcade.Test.Common (1)
MockFileSystem.cs (1)
42public bool FileExists(string path) => Files.ContainsKey(path);
8 references to FileExists
Microsoft.DotNet.Build.Tasks.Feed (4)
src\PublishArtifactsInManifest.cs (1)
299if (!_fileSystem.FileExists(manifestFullPath))
src\PushToBuildStorage.cs (3)
297if (!fileSystem.FileExists(package.OriginalFile)) 308if (!fileSystem.FileExists(blobArtifact.OriginalFile)) 329if (!fileSystem.FileExists(pdbArtifact.OriginalFile))
Microsoft.DotNet.Helix.Sdk (4)
CreateXHarnessAndroidWorkItems.cs (1)
76if (!fileSystem.FileExists(apkPath))
CreateXHarnessAppleWorkItems.cs (1)
202return isAlreadyArchived ? fileSystem.FileExists(appBundlePath) : fileSystem.DirectoryExists(appBundlePath);
ProvisioningProfileProvider.cs (1)
185if (_fileSystem.FileExists(targetFile))
XharnessTaskBase.cs (1)
138if (fileSystem.FileExists(outputZipPath))