Reputation: 3207
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.
Upvotes: 3
Views: 330
Reputation: 7627
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?
Upvotes: 3