英文:
How to check the content of the wwwroot folder of the Azure Function App
问题
我有一个部署在Azure上的Azure函数应用程序。
我正在调试应用程序的某个问题,所以我需要检查wwwroot文件夹的内容以了解问题的根本原因。我一直在阅读所有的文档,但我找不到它。
在应用程序运行时,我如何检查wwwroot文件夹的内容。任何帮助都将不胜感激。
英文:
I have an Azure Function app that is deployed on Azure.
I am debugging some issue with the app,so I need to check the content of the wwwroot folder to understand the root cause of problem. I have been reading all the documents,but I couldn't find it.
How I can check the content of the wwwroot folder while app is running. Any help is appreciated.
答案1
得分: 1
以下是已翻译的内容:
有相关的问题和答案。
简单的方法是使用Azure门户中的高级工具(Kudu服务)。
- 登录到portal.azure.com
- 选择您的Azure函数应用
- 在侧边栏中选择高级工具,然后选择'Go'。
- 这将显示Kudu服务。
- 选择Debug控制台 | CMD
- 选择site | wwwroot文件夹以检查文件夹的内容。
英文:
There are related questions and answers.
Simple way is by using Advanced Tool (Kudu Services) from the azure portal.
- Sign-in to portal.azure.com
- Select your Azure Function App
- Select Advanced Tools in the side bar and select 'Go'.
- This will dislplay the Kudu Services.
- Select Debug console | CMD
- Select site | wwwroot folder to check the content of the folder.
答案2
得分: 0
除了 @Snekithan 的回答之外:
要进入 Kudu,无论是对于 App Service 还是 Function App,都可以使用 [app-name].scm.azurewebsites.net
这个快捷方式。
如果您想使用类似在线 VS Code 编辑器的工具,可以在任何托管在 Windows 上的 App Service 或 Function App 上访问 [app-name].scm.azurewebsites.net/dev
。
英文:
In addition to @Snekithan's answer:
The shortcut to get to Kudu for both an App Service and a Function App is [app-name].scm.azurewebsites.net
.
If you would like to use something that looks a lot like an online VS Code editor, go to [app-name].scm.azurewebsites.net/dev
on any Windows hosted App Service or Function App.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论