from https://www.serverless360.com/blog/azure-blob-storage-vs-file-storage Microsoft offers several options to store data on the cloud. Each option has its unique purpose for serving different business needs. One of the significant capabilities that Microsoft Azure provides is the agility to migrate to different storage options if required. There are various options available in the Azure Storage Account for storing user data. Blob Storage File Storage Table Storage Queue Storage Disk This blog tries to differentiate between Azure Blob Storage and File Storage which is available in Azure Storage Account. Introduction Blob Storage Azure Blob Storage is an object storage solution for the cloud. Blob Storage allows you to store a massive amount of unstructured data. The unstructured data need not be of the specific data model. File Storage Azure Files offer fully managed File shares in the cloud that are accessible via the industry-standard SMB. Azure File shares can be mounted concurrently by cloud or on-premises deployments of Windows, Linux, and macOS. It can be cached on Windows servers with Azure File Sync for faster access. When to Use Blob Storage Azure Blob Storage was designed to serve specific needs. If your business use case needs to store unstructured data like audio, video, images, etc then you should probably go with this option. The objects which are being stored in Blob does not necessarily have an extension. The following points describe the use case scenarios: Serving images or documents directly to a browser Storing Files for distributed access Streaming video and audio Writing to log Files Storing data for backup, restore, disaster recovery and archiving Storing data for analysis…