gpt4 book ai didi

c# - 有没有办法更改 azure 函数的 blob 绑定(bind)中的 blob 路径?

转载 作者:行者123 更新时间:2023-12-03 05:45:52 26 4
gpt4 key购买 nike

我正在使用一个 azure 函数,该函数会将多个具有不同名称的 xml 文件保存到同一个 blob 容器中。我想使用其他绑定(bind)中的数据来格式化名称。

Blob 绑定(bind):

[Blob("outbound/", FileAccess.Write, Connection = 
Settings.InbundBlobConnectionString)] Stream outboundBlob

有没有办法使用代码来操作 blob 路径?

最佳答案

我们可以使用imperative binding pattern 。在函数方法签名中,添加 Binder binder,删除 Blob 输入绑定(bind)并尝试下面的代码。

        string myBlobName = "valueGotFromOtherBinding";
var attributes = new Attribute[]
{
new BlobAttribute($"outbound/{myBlobName}", FileAccess.Write),
new StorageAccountAttribute(Settings.InbundBlobConnectionString)
};
using (var writer = await binder.BindAsync<TextWriter>(attributes))
{
await writer.WriteAsync("Conetent");
}

关于c# - 有没有办法更改 azure 函数的 blob 绑定(bind)中的 blob 路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54088574/

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