Azure: Is there a way to view deployed files in Azure?

AzureAzure Web-App-Service

Azure Problem Overview


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 see exactly what files Azure is hosting.


I can see there's the Visual Studio Online option which allows you to live edit your server code but that is more than I need. I just want to be able to check that certain files are deployed and others are not.

Azure Solutions


Solution 1 - Azure

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.

Solution 2 - Azure

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.

Edit File on Azure


@@@@@ 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!

Solution 3 - Azure

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.

Solution 4 - Azure

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".

enter image description here

Solution 5 - Azure

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.

enter image description here

Solution 6 - Azure

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,

enter image description here

Solution 7 - Azure

You can use Visual Studio Code and the Azure extension

enter image description here

Solution 8 - Azure

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.

Solution 9 - Azure

That could be relevant: AppService->Console enter image description here

Solution 10 - Azure

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJohn ReillyView Question on Stackoverflow
Solution 1 - AzureDavid MakogonView Answer on Stackoverflow
Solution 2 - AzureA. MorelView Answer on Stackoverflow
Solution 3 - AzureTanyView Answer on Stackoverflow
Solution 4 - AzureCasey CrookstonView Answer on Stackoverflow
Solution 5 - Azureyu yang JianView Answer on Stackoverflow
Solution 6 - Azuresakulachi8View Answer on Stackoverflow
Solution 7 - AzureMDUView Answer on Stackoverflow
Solution 8 - AzureShivam NegiView Answer on Stackoverflow
Solution 9 - AzurejasmintmpView Answer on Stackoverflow
Solution 10 - AzureDanielGView Answer on Stackoverflow