Azure-Samples/storage-blob-dotnet-getting-started

File not downloaded with absolute uri

Opened this issue · 0 comments

Hello Team,

I was this console project, upload is working completely fine but download is not working. I am not able to download the file either by "Basic" or "SAS" code block.

  1. Console.WriteLine("4. Download Blob from {0}", blockBlob.Uri.AbsoluteUri); :when I paste this Uri in browser it shows content not found.
  2. await blockBlob.DownloadToFileAsync(string.Format("./CopyOf{0}", "test.jpg"), FileMode.Create); This line of code is working but I don't know where it is saving the file downloaded.
    

Please help me with this