gpt4 book ai didi

azure - 将 Azure block blob 复制到 Azure 文件共享?

转载 作者:行者123 更新时间:2023-12-02 07:40:02 24 4
gpt4 key购买 nike

如何将 Azure 存储中的 block (或页)blob 复制到 Azure 文件共享?如果我将 block blob 下载到本地文件,我的示例代码可以正常工作,但似乎没有下载到 Azure 文件共享的方法。我查看了 Azure 数据移动库,但没有说明如何执行此操作的示例。

void Main()
{
string myfile =@"Image267.png";

CredentialEntity backupCredentials = Utils.GetBackupsCredentials();
CloudStorageAccount backupAccount = new CloudStorageAccount(new StorageCredentials(backupCredentials.Name, backupCredentials.Key), true);
CloudBlobClient backupClient = backupAccount.CreateCloudBlobClient();
CloudBlobContainer backupContainer = backupClient.GetContainerReference(@"archive");
CloudBlockBlob blob = backupContainer.GetBlockBlobReference(myfile);

CredentialEntity fileCredentails = Utils.GetFileCredentials();
CloudStorageAccount fileAccount = new CloudStorageAccount(new StorageCredentials(fileCredentails.Name,fileCredentails.Key), true);
CloudFileClient fileClient = fileAccount.CreateCloudFileClient();
CloudFileShare share = fileClient.GetShareReference(@"xfer");

if (share.Exists())
{
CloudFileDirectory rootDir = share.GetRootDirectoryReference();
CloudFileDirectory sampleDir = rootDir.GetDirectoryReference("hello");
if (sampleDir.Exists())
{
CloudFile file = sampleDir.GetFileReference(myfile);
// blob.DownloadToFile(file.ToString());
}
}
}

不起作用的部分是注释掉的行 blob.DownloadToFile

关于如何做到这一点有什么想法吗?

最佳答案

官方文档中有一个例子here :它用于将文件从文件共享复制到 Blob 存储,但您可以进行一些更改以从 Blob 存储复制到文件共享。我还编写了一个示例代码,用于从 blob 存储复制到文件共享,您可以看一下,如下所示。

您可以使用 SAS token (对于源 blob 或源文件)将文件复制到 blob/或将 blob 复制到文件,在同一存储帐户或不同存储帐户中。

示例代码如下(将blob复制到同一存储帐户中的文件,如果它们位于不同的存储帐户中,您可以做一些更改):

static void Main(string[] args)
{
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("connection string");

var blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer cloudBlobContainer = blobClient.GetContainerReference("t0201");
CloudBlockBlob sourceCloudBlockBlob = cloudBlobContainer.GetBlockBlobReference("test.txt");

//Note that if the file share is in a different storage account, you should use CloudStorageAccount storageAccount2 = CloudStorageAccount.Parse("the other storage connection string"), then use storageAccount2 for the file share.
CloudFileClient fileClient = storageAccount.CreateCloudFileClient();
CloudFileShare share = fileClient.GetShareReference("testfolder");
CloudFile destFile = share.GetRootDirectoryReference().GetFileReference("test.txt");

//Create a SAS for the source blob
string blobSas = sourceCloudBlockBlob.GetSharedAccessSignature(new SharedAccessBlobPolicy()
{
Permissions = SharedAccessBlobPermissions.Read,
SharedAccessExpiryTime = DateTime.UtcNow.AddHours(24)
});

Uri blobSasUri = new Uri(sourceCloudBlockBlob.StorageUri.PrimaryUri.ToString()+blobSas);
destFile.StartCopy(blobSasUri);

Console.WriteLine("done now");
Console.ReadLine();
}

它在我身边运作良好,希望对您有所帮助。

关于azure - 将 Azure block blob 复制到 Azure 文件共享?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55284397/

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