Microsoft Azure - Working with Files in Azure App Service Last Updated : 03 Apr, 2023 Comments Improve Suggest changes 1 Likes Like Report Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile back ends. In this article, we will look into the process of working with files in the Azure App service using an example. Console Access to my App Services:We can go to the Azure Portal and select my App Services and click on the console under Development Tools to have a command prompt to quickly work with my Azure App Service.As you can tell from the screenshot, we can start in D:\home\site\wwwroot. I can type dir to see a current directory listing.We can do basic commands here and even use type <filename> to parse the output of a file to the screen. You can make the directory and so forth, but keep in mind that this is a sandbox environment and some commands which require elevated permissions may not work. Quick Tip You can type help from the console window for a list of available commands. A VS Code experience to our App Service:There is also another option that is called "App Service Editor" located just two items down from the "Console" that you picked before. If you're familiar with VS Code, then you'll be right at home as you can explore, search and add to Git. You can also manipulate files from within the window. This makes it easy to add, edit or delete files.Just like in VS Code, you can modify your settings and even change your theme.No App Service tutorial is complete without mentioning Kudu Diagnostic Console. You can access it from within the App Service Editor under your app name -> Open Kudu Console or through the portal under Advanced Tools. You can just click on the folder name to navigate or type in the command. You can also easily manipulate the files, but we like the App Service Editor better for that functionality. The main reason that we typically come to the Kudu Diagnostic Console is to download files. Create Quiz Comment A abhibondre27 Follow 1 Improve A abhibondre27 Follow 1 Improve Article Tags : Cloud Computing Geeks-Premier-League-2022 Explore Basics Of Cloud ComputingIntroduction to Cloud Computing 10 min read History of Cloud Computing 4 min read Evolution of Cloud Computing 6 min read Characteristics of Cloud Computing 2 min read Advantages of Cloud Computing 8 min read Architecture of Cloud Computing 6 min read Cloud Computing Infrastructure 3 min read Cloud Management in Cloud Computing 6 min read What is Cloud Storage? 15 min read Real World Applications of Cloud Computing 6 min read Cloud Deployment ModelsCloud Deployment Models 12 min read Types of Cloud Computing 12 min read Difference Between Public Cloud and Private Cloud 6 min read Public Cloud vs Private Cloud vs Hybrid Cloud 7 min read Cloud Service ModelsCloud Based Services 11 min read Platform As A Service (PaaS) and its Types 11 min read Software As A Service (SaaS) 2 min read SaaS, PaaS and IaaS 4 min read Cloud VirtualizationVirtualization in Cloud Computing and Types 6 min read Difference between Cloud Computing and Virtualization 4 min read Pros and Cons of Virtualization in Cloud Computing 5 min read Data Virtualization 9 min read Hardware Based Virtualization 5 min read Server Virtualization 3 min read Types of Server Virtualization in Computer Network 4 min read Network Virtualization in Cloud Computing 4 min read Operating system based Virtualization 5 min read Cloud Service ProviderAmazon Web Services (AWS) Tutorial 9 min read Microsoft Azure Tutorial 13 min read Google Cloud Platform Tutorial 8 min read Advanced Concepts of CloudOn Premises VS On Cloud 3 min read Differences between Cloud Servers and Dedicated Servers 4 min read Cloud Networking 4 min read Server Consolidation in Cloud Computing 6 min read Hypervisor Security in Cloud Computing 5 min read Cloud Computing Security 5 min read Security Issues in Cloud Computing 5 min read 7 Privacy Challenges in Cloud Computing 5 min read Security Threats in Implementing SaaS of Cloud Computing 6 min read Multitenancy in Cloud computing 2 min read Middleware in Grid Computing 2 min read Difference between Cloud Computing and Grid Computing 4 min read Scalability and Elasticity in Cloud Computing 4 min read Cloud Bursting vs Cloud Scaling 7 min read Automated Scaling Listener in Cloud Computing 4 min read Difference Between Multi-Cloud and Hybrid Cloud 5 min read Difference Between Cloud Computing and Fog Computing 3 min read Overview of Multi Cloud 10 min read Service level agreements in Cloud computing 6 min read Overview of Everything as a Service (XaaS) 5 min read Resource Pooling Architecture in Cloud Computing 3 min read Load balancing in Cloud Computing 6 min read Overview of Desktop as a Service (DaaS) 5 min read IoT and Cloud Computing 6 min read Container as a Service (CaaS) 5 min read Principles of Cloud Computing 3 min read Resiliency in Cloud Computing 4 min read Serverless Computing 3 min read Like