1. <tfoot id='Y2xd8'></tfoot>
      <i id='Y2xd8'><tr id='Y2xd8'><dt id='Y2xd8'><q id='Y2xd8'><span id='Y2xd8'><b id='Y2xd8'><form id='Y2xd8'><ins id='Y2xd8'></ins><ul id='Y2xd8'></ul><sub id='Y2xd8'></sub></form><legend id='Y2xd8'></legend><bdo id='Y2xd8'><pre id='Y2xd8'><center id='Y2xd8'></center></pre></bdo></b><th id='Y2xd8'></th></span></q></dt></tr></i><div id='Y2xd8'><tfoot id='Y2xd8'></tfoot><dl id='Y2xd8'><fieldset id='Y2xd8'></fieldset></dl></div>
      <legend id='Y2xd8'><style id='Y2xd8'><dir id='Y2xd8'><q id='Y2xd8'></q></dir></style></legend>

        <small id='Y2xd8'></small><noframes id='Y2xd8'>

          <bdo id='Y2xd8'></bdo><ul id='Y2xd8'></ul>
      1. Azure 功能的文件存储在哪里?

        Where to store files for Azure function?(Azure 功能的文件存储在哪里?)

              <tbody id='LHIjH'></tbody>
            <tfoot id='LHIjH'></tfoot>
          • <small id='LHIjH'></small><noframes id='LHIjH'>

              <legend id='LHIjH'><style id='LHIjH'><dir id='LHIjH'><q id='LHIjH'></q></dir></style></legend>
                  <bdo id='LHIjH'></bdo><ul id='LHIjH'></ul>

                  <i id='LHIjH'><tr id='LHIjH'><dt id='LHIjH'><q id='LHIjH'><span id='LHIjH'><b id='LHIjH'><form id='LHIjH'><ins id='LHIjH'></ins><ul id='LHIjH'></ul><sub id='LHIjH'></sub></form><legend id='LHIjH'></legend><bdo id='LHIjH'><pre id='LHIjH'><center id='LHIjH'></center></pre></bdo></b><th id='LHIjH'></th></span></q></dt></tr></i><div id='LHIjH'><tfoot id='LHIjH'></tfoot><dl id='LHIjH'><fieldset id='LHIjH'></fieldset></dl></div>
                  本文介绍了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较新的.使用下面的代码.

                  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
                  }
                  

                  检查 文档 了解更多详情.

                  Check the doc for more details.

                  如果我们需要从本地任何地方添加此文件,请右键单击 Function 项目,编辑 <FunctionProjectName>.csproj.在下方添加Item,相对路径或绝对路径都可以.

                  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 功能的文件存储在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Adding and removing users from Active Directory groups in .NET(在 .NET 中的 Active Directory 组中添加和删除用户)
                  set equality in linq(在 linq 中设置相等)
                  HashSet conversion to List(HashSet 转换为 List)
                  How to set timeout for webBrowser navigate event(如何为 webBrowser 导航事件设置超时)
                  Test whether two IEnumerablelt;Tgt; have the same values with the same frequencies(测试两个IEnumerablelt;Tgt;具有相同频率的相同值)
                  How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)
                    <i id='DjR8I'><tr id='DjR8I'><dt id='DjR8I'><q id='DjR8I'><span id='DjR8I'><b id='DjR8I'><form id='DjR8I'><ins id='DjR8I'></ins><ul id='DjR8I'></ul><sub id='DjR8I'></sub></form><legend id='DjR8I'></legend><bdo id='DjR8I'><pre id='DjR8I'><center id='DjR8I'></center></pre></bdo></b><th id='DjR8I'></th></span></q></dt></tr></i><div id='DjR8I'><tfoot id='DjR8I'></tfoot><dl id='DjR8I'><fieldset id='DjR8I'></fieldset></dl></div>
                    <legend id='DjR8I'><style id='DjR8I'><dir id='DjR8I'><q id='DjR8I'></q></dir></style></legend>

                      1. <tfoot id='DjR8I'></tfoot>

                      2. <small id='DjR8I'></small><noframes id='DjR8I'>

                            <bdo id='DjR8I'></bdo><ul id='DjR8I'></ul>
                              <tbody id='DjR8I'></tbody>