This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Threading.Tasks; | |
using pdfjs.Interfaces; | |
using pdfjs.iOS.PlatformSpecifics; | |
using Xamarin.Forms; | |
[assembly: Dependency(typeof(LocalFileProvider))] | |
namespace pdfjs.iOS.PlatformSpecifics | |
{ | |
public class LocalFileProvider : ILocalFileProvider | |
{ | |
private readonly string _rootDir = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), "pdfjs"); | |
public async Task<string> SaveFileToDisk(Stream stream, string fileName) | |
{ | |
if (!Directory.Exists(_rootDir)) | |
Directory.CreateDirectory(_rootDir); | |
var filePath = Path.Combine(_rootDir, fileName); | |
using (var memoryStream = new MemoryStream()) | |
{ | |
await stream.CopyToAsync(memoryStream); | |
File.WriteAllBytes(filePath, memoryStream.ToArray()); | |
} | |
return filePath; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment