Xamarin Forms Open File
string completeFileName = "File.txt";
string filePath = Path.Combine(FileSystem.CacheDirectory, completeFileName);
_ = Launcher.OpenAsync(new OpenFileRequest
{
File = new ReadOnlyFile(filePath)
});
string completeFileName = "File.txt";
string filePath = Path.Combine(FileSystem.CacheDirectory, completeFileName);
_ = Launcher.OpenAsync(new OpenFileRequest
{
File = new ReadOnlyFile(filePath)
});