How to view deployed files in Azure?


azure cloud platform Tutorials

In this post, I will show 4 ways how to view deployed files in Azure.

Kudu dashboard

  1. Open https://<your-app>.scm.azurewebsites.net/ and click on “Files”:

    Files link in Kudu Dashboard

  2. You will be redirected to the JSON with data about deployed files:

    JSON file with data on Azure

SSH

  1. Open SSH terminal for your app using the following link: https://<your-app>.scm.azurewebsites.net/webssh/host

  2. Everything you need its enter ls -l and here is the list of deployed files:

    Deployed files in Azure using SSH

Bash (DebugConsole)

  1. Go to https://<your-app>.scm.azurewebsites.net/DebugConsole

  2. Type ls command

  3. You will see the list of deployed files:

    Deployed files in Azure using Bash

Visual Studio Code (SSH)

  1. Open Visual Studio Code with your app. You should have installed Azure App extension.

  2. Right-click on app inside extension

  3. Click “SSH into Web App”

  4. Now you can easily see all files through SSH client in VSC:

    Deployed files in Azure using VSC

comments powered by Disqus