【问题标题】:Trying to delete a blob in Azure Functions but DeleteIfExists method is missing尝试删除 Azure Functions 中的 blob,但缺少 DeleteIfExists 方法
【发布时间】:2019-07-29 08:57:29
【问题描述】:

我使用 BlobTrigger 模板创建了一个带有 Blob 触发器的新 C# Azure 函数。然后我将 blob 触发器绑定的类型更改为 CloudBlockBlob。接下来我尝试添加一行来删除 blob。结果是函数编译错误:

[Error] run.csx(8,12): error CS1061: 'CloudBlockBlob' does not contain a definition for 'DeleteIfExists' and no extension method 'DeleteIfExists' accepting a first argument of type 'CloudBlockBlob' could be found (are you missing a using directive or an assembly reference?)

我错过了什么?根据文档,CloudBlockBlob 应该有一个名为 DeleteIfExists 的方法。

这是我的全部功能:

#r "Microsoft.WindowsAzure.Storage"

using Microsoft.WindowsAzure.Storage.Blob;

public static void Run(CloudBlockBlob myBlob, string name, ILogger log)
{
    log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Properties.Length} Bytes");
    myBlob.DeleteIfExists();
}

【问题讨论】:

    标签: c# azure azure-functions azure-blob-storage


    【解决方案1】:

    如果您使用的是 Functions v2,那么您可能正在使用 .NET Core 或 .NET Standard,它们似乎只支持异步方法。请改用await myblob.DeleteIfExistsAsync()

    【讨论】:

    • 谢谢!那成功了。我没有注意到 .NET Core 或 .NET Standard 没有同步方法。
    猜你喜欢
    • 1970-01-01
    • 2020-02-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-05-15
    • 1970-01-01
    • 1970-01-01
    • 2020-06-11
    相关资源
    最近更新 更多