backblaze
backblaze copied to clipboard
Download via Stream
It shouldn't be a requirement to download a file to a local path. There should be the capability of downloading the file to any writable stream.
The best (in my opion) way to handle this would be creating a download method that returns the response stream that correlates to the file. EG, if using a Http Client, returning response.Content.ReadAsStreamAsync()
might be an option.