我目前正努力從本地存儲上傳多個文件到Azure Blob存儲,我想知道是否有人可以幫助我,下面是我以前用來上傳的代碼一個zip文件。從本地存儲上傳所有文件到Azure Blob存儲
private void SaveZip(string id, string fileName, string contentType, byte[] data)
{
// Create a blob in container and upload image bytes to it
var blob = this.GetContainer().GetBlobReference(fileName);
blob.Properties.ContentType = contentType;
// Create some metadata for this image
var metadata = new NameValueCollection();
metadata["Id"] = id;
metadata["Filename"] = fileName;
}
SaveZip(
Guid.NewGuid().ToString(),
zipFile.FileName,
zipFile.PostedFile.ContentType,
zipFile.FileBytes);
謝謝,薩米人。
你有什麼問題? – Greg 2012-03-05 02:49:50
對不起,我的問題並不清楚我在一個目錄中有多個文件,我想提供目錄的路徑,然後代碼上傳所有的文件。 – Sami 2012-03-05 03:25:40
這是如何將文件上傳到Blob存儲的?你永遠不會對字節數組做任何事情。 – CodeThug 2012-03-05 03:34:57