gpt4 book ai didi

从 Blob 复制 Azure 存储

转载 作者:行者123 更新时间:2023-12-02 23:20:23 26 4
gpt4 key购买 nike

我在转换此处描述的控制台应用程序时遇到问题。 Copying an existing blob into a media services asset在移动应用服务上运行

我拥有类似引用和代码方面的一切,但有以下问题

// Display the size of the source blob.
Console.WriteLine(sourceBlob.Properties.Length);
Console.WriteLine(string.Format("Copy blob '{0}' to '{1}'", sourceBlob.Uri, destinationBlob.Uri));

// The line below gives the following error:
destinationBlob.StartCopyFromBlob(new Uri(sourceBlob.Uri.AbsoluteUri + signature));

Blockquote 'ICloudBlob' does not contain a definition for 'StartCopyFromBlob' and no extension method 'StartCopyFromBlob' accepting a first argument of type 'ICloudBlob' could be found (are you missing a using directive or an assembly reference?

这是因为我使用的是存储客户端版本 7 并且该方法已被删除吗?

如果是这样,是否有一种新的方法组合方法可以用来实现类似的结果?

最佳答案

来自release notes ,你可以发现:

Blobs: Removed deprecated (Begin/End)StartCopyFromBlob(Async) APIs in favor of using (Begin/End)StartCopy(Async) APIs.

因此,请使用StartCopy而不是 StartCopyFromBlob。

关于从 Blob 复制 Azure 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39193026/

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