Is there a way to view deployed files in Azure?

后端 未结 9 1618
情深已故
情深已故 2020-12-07 09:11

Is there a file \"view\" available in Azure? When I log in to azure to look at a website I\'ve deployed there is no obvious way I have spotted to see exactly what files Azu

相关标签:
9条回答
  • 2020-12-07 09:41

    I know this is old, but I just found it, and got some useful tips from it. If you are using an App Service, there is now a browser option to do this as well:

    https://YourAppService.scm.azurewebsites.net/dev/wwwroot/

    You can get there from the Azure portal, then go to your App service, then scroll down to Development Tools, and click on "App Service Editor".

    0 讨论(0)
  • 2020-12-07 09:42

    You can use App Service Editor (previously known as Visual Studio Online). It can be found under your webapp -> Development Tools section in the Azure Portal.

    0 讨论(0)
  • 2020-12-07 09:44

    Adding to the accepted answer, you can open an ssh session by going to http://<yoursitename>.scm.azurewebsites.net/webssh/host.

    For a long time, I've looked for a linux-style terminal to view my deployed files and environment variables. With this you can view the files, check and set environment variables, make db migrations directly, and a lot more. Hope this is useful.

    0 讨论(0)
  • 2020-12-07 09:49

    Yes, you have many options to see that

    1. By clicking Console option (run "dir" command, will list down all files)
    2. By hitting App Service Editor(Preview) option,

    0 讨论(0)
  • 2020-12-07 09:52

    You can use Visual Studio Code and the Azure extension

    0 讨论(0)
  • 2020-12-07 09:53

    In VS2017/2019, there's Cloud Explorer to view files in Azure, but each time open folder to view files will invoke connection to cloud, so you have to wait, that's a bit slow.

    To open Cloud Explore, Right click on project > Publish > Manage in Cloud Explore, or Top Menu > View > Cloud Explorer.

    0 讨论(0)
提交回复
热议问题