3

I want to write a SSIS package to fetch the file placed in my azure storage container to my local machine , can i know any good article which explains it.

mahesh
  • 3,067
  • 16
  • 69
  • 127
  • Is your blob container public or private (can you list/get object without authentivation)? – Matej Dec 02 '11 at 08:44

1 Answers1

3

The easiest way do download singe file is to create Script Task and then use WebClient.DownloadFile.

using (var wc = new WebClient())
{
    wc.DownloadFile("url", "localFileName")
}

You can also check How to make an HTTP request from SSIS?

Community
  • 1
  • 1
Matej
  • 7,517
  • 2
  • 36
  • 45