gpt4 book ai didi

将所有文件从本地存储上传到 Azure Blob 存储

转载 作者:行者123 更新时间:2023-12-03 04:52:36 24 4
gpt4 key购买 nike

我目前正在努力将多个文件从本地存储上传到 Azure Blob 存储,我想知道是否有人可以帮助我,下面是我之前用来上传单个 zip 文件的代码。

    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);

谢谢,萨米。

最佳答案

使用 azure storage powershell 中的 Set-AzureStorageBlobContent 非常简单。

ls -File -Recurse | Set-AzureStorageBlobContent -Container upload

MSDN 文档:http://msdn.microsoft.com/en-us/library/dn408487.aspx

关于将所有文件从本地存储上传到 Azure Blob 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9560982/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com