在哪里存储用于Azure功能的文件?

编程入门 行业动态 更新时间:2024-10-27 04:24:11
本文介绍了在哪里存储用于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功能的文件?

本文发布于:2023-10-19 14:30:04,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1507803.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:功能   文件   Azure

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!