Introduction
Blob storage lets you save large files like pictures, videos, or logs in the cloud. It offers three types of blobs: block blobs for regular files, append blobs for adding data like logs, and page blobs for random read/write like virtual disks.
When you want to store images or documents for a website using block blobs.
When you need to keep adding log entries to a file without overwriting using append blobs.
When you want to create a virtual hard drive for a virtual machine using page blobs.
When you want to upload large files in smaller pieces with block blobs.
When you need fast random access to parts of a file with page blobs.