Is there a way to view deployed files in Azure?

后端 未结 9 1619
情深已故
情深已故 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:56

    In Visual Studio, in the window "Server Explorer" you click and connect on "Azure".

    => App Service

    => Your site name

    => Files

    Here you see all your files and you can edit them directly in Visual Studio.


    @@@@@ UPDATE 19/08/2019 @@@@@

    For some time now, it hasn't worked anymore.... :(

    Here is another way to do it: By FTP !

    From the Azure portal, in the "App Service" section of your website, go to "Deployment Center" > FTP > Dashboard

    There is the FTPS Endpoint => ftp://.....ftp.azurewebsites.windows.net/site/wwwroot

    And username, password information.

    Install FileZilla Client! (https://filezilla-project.org/)

    Enter Host with "FTPS Endpoint" the "username" and "password" and then login quickly!

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

    Since you are using Azure Websites, Azure wants to "manage" it for you, and as a result, you cannot connect to the VM itself. If you were using a Cloud Service, you can obtain the RDP information from the Azure Console and just remote into the machine.

    For your situation, you can use FTP as an option. Here is blog that describes one approach:

    http://blogs.msdn.com/b/avkashchauhan/archive/2012/06/19/windows-azure-website-uploading-downloading-files-over-ftp-and-collecting-diagnostics-logs.aspx

    Here is another option using WebMatrix: http://www.microsoft.com/web/post/how-to-edit-a-site-hosted-on-windows-azure-with-webmatrix

    0 讨论(0)
  • 2020-12-07 10:05

    If you're just trying to look around, and see the various directories and files in your deployment, you can enter the site's "Kudu" dashboard, using the url format http://<yoursitename>.scm.azurewebsites.net

    This will give you a web-based dashboard, including a debug console (web-based) where you can explore your various directories (and the directories will show up visually as well).

    More info can be found in this post from the Azure Websites team.

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