Reputation: 41
I have a url which looks like following "https://XXXXXXXX-functions.azurewebsites.net/api/UploadedZIPFile?ticket=1234&code=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" which contains the file. "UploadedZIPFile" is the file Name. In URL I don't have the extension of filename. After downloading the file into my system it is showing the extension. I want to upload the file which came from the URL into Azure blob storage. How can I upload the file to azure blob storage from the given URL using c#? Please Added my code sample below
public async Task<string> automaticFileUpload(string ticketNum, string type, string fileURL)
{
Uri uri = new Uri(fileURL);
string fileName = System.IO.Path.GetFileName(uri.LocalPath);
string extension = ".zip";
string finalFileName = fileName + extension;
var connectionString = "xxxxxxx";
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
CloudBlobClient cloudBlobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer cloudBlobContainer =
cloudBlobClient.GetContainerReference("xxxxxxx");
await cloudBlobContainer.CreateIfNotExistsAsync();
BlobContainerPermissions permissions = new BlobContainerPermissions
{
PublicAccess = BlobContainerPublicAccessType.Blob
};
await cloudBlobContainer.SetPermissionsAsync(permissions);
if (!cloudBlobContainer.GetPermissionsAsync().Equals(BlobContainerPublicAccessType.Off))
{
await cloudBlobContainer.SetPermissionsAsync(new BlobContainerPermissions
{
PublicAccess = BlobContainerPublicAccessType.Off
});
}
CloudBlockBlob blockblob = cloudBlobContainer.GetBlockBlobReference(finalFileName);
blockblob.Properties.ContentType = "application/zip";
using (var client = new HttpClient())
{
//get the url
var request = new HttpRequestMessage(HttpMethod.Get, fileURL);
var sendTask = client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead);
var response = sendTask.Result;
HttpStatusCode status = response.StatusCode;
if (status == HttpStatusCode.OK)
{
var httpStream = response.Content.ReadAsStreamAsync().Result;
MemoryStream ms = new MemoryStream();
httpStream.CopyTo(ms);
ms.Position = 0;
await blockblob.UploadFromStreamAsync(ms);
return blockblob.Uri.AbsoluteUri;
}
}
return null;
}
As of now I am taking hard coded values for file extension and content type But I need dynamic values
Thanks in Advance
Upvotes: 0
Views: 1676
Reputation: 7473
You could get the content-type
in the response headers, see:
And then get file extension
from content type in this way.
There is the code for getting the headers with HttpWebResponse. For more details, see the document.
// Creates an HttpWebRequest for the specified URL.
HttpWebRequest myHttpWebRequest = (HttpWebRequest)WebRequest.Create(url);
// Sends the HttpWebRequest and waits for response.
HttpWebResponse myHttpWebResponse = (HttpWebResponse)myHttpWebRequest.GetResponse();
// Displays all the headers present in the response received from the URI.
Console.WriteLine("\r\nThe following headers were received in the response:");
// Displays each header and it's key associated with the response.
for(int i=0; i < myHttpWebResponse.Headers.Count; ++i)
Console.WriteLine("\nHeader Name:{0}, Value :{1}",myHttpWebResponse.Headers.Keys[i],myHttpWebResponse.Headers[i]);
// Releases the resources of the response.
myHttpWebResponse.Close();
Upvotes: 1