Azure.Identity.FileSystemService
namespace Azure.Identity
{
internal class FileSystemService : IFileSystemService
{
public static IFileSystemService Default { get; }
public bool FileExists(string path);
public string ReadAllText(string path);
public FileStream GetFileStream(string path);
}
}