gpt4 book ai didi

c# - 使用 C# 删除 Azure 文件共享快照

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

我找不到使用 C# 中的 SDK 12 删除 Azure 文件共享快照的示例。 SDK 11 有大量示例,但我找不到 SDK 12 的示例。如果有人有一个好的示例,我将非常感激!

最佳答案

请尝试此代码。基本上你需要利用 ShareClient.WithSnapshot(String)访问共享的快照。

var connectionString =
"DefaultEndpointsProtocol=https;AccountName=account-name;AccountKey=account-key";
var shareName = "test";
var snapshot = "2022-07-26T13:49:01.0000000Z";
ShareServiceClient shareserviceclient = new ShareServiceClient(connectionString);
ShareClient shareClient = shareserviceclient.GetShareClient(shareName).WithSnapshot(snapshot);
shareClient.Delete();

关于c# - 使用 C# 删除 Azure 文件共享快照,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73122114/

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