在哪里存储用于Azure功能的文件? [英] Where to store files for Azure function?

查看:75
本文介绍了在哪里存储用于Azure功能的文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有C#代码从内部引用的文件,例如:

I have files that I reference from inside by C# code such as:

public static string Canonical()
{
    return File.ReadAllText(@"C:\\myapp\\" + "CanonicalMessage.xml");
}

如何在Azure功能中引用此文件?

public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log)
{
    var data = File.ReadAllText(@"c:\\myapp\\" + "CanonicalMessage.xml");

    //etc
}

也许我可以简单地将此资源嵌入到项目中?

推荐答案

是的,将文件放在Azure Function项目的根目录并将其属性Copy to Output Directory设置为Copy if newer.使用下面的代码.

Yes, put the file at the root of Azure Function project and set its property Copy to Output Directory to Copy if newer. Use code below.

public static async Task<HttpResponseMessage> Run(HttpRequestMessage req, TraceWriter log, ExecutionContext context)
{
    var data = File.ReadAllText(context.FunctionAppDirectory+"/CanonicalMessage.xml");

    //etc
}

检查 doc 了解更多信息.

如果需要从本地任何位置添加此文件,请右键单击Function项目Edit <FunctionProjectName>.csproj.在下面添加项目,相对或绝对路径都可以.

If we need to add this file from anywhere locally, right click on Function project, Edit <FunctionProjectName>.csproj. Add Item below, relative or absolute path are both ok.

<ItemGroup>
  <None Include="c:\\myapp\\CanonicalMessage.xml">
    <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  </None>
</ItemGroup> 

这篇关于在哪里存储用于Azure功能的文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆