Back

Explore Courses Blog Tutorials Interview Questions
+2 votes
2 views
in Azure by (45.3k points)

Please correct me! From my reading on the topic so far, it appears to me that both, Azure Blob Storage and File Service offer the ability to store file(s) and folder(s) (I understand that blobs can store any binary object, but any serialized binary stream is just a file at the end of the day) in a hierarchical structure that mimics a file system.

Only the API to access them are slightly different in that the File Service allows you to query the source using Win32 File I/O like functions as well in addition to using the REST API.

Why would you choose one over another if you wanted your application to store some files owned by your application's users?

1 Answer

+2 votes
by (16.8k points)
edited by

Hey, few artifacts that we have gathered for your question here: 

For Azure Blob Storage, it isn't hierarchical beyond the containers, the files that can be added in them have "/" or "\" characters, these are explained as a folder by the applications which can read the blob storage.

Looking for Azure storage material from basics! Refer to this video on Azure storage provided by Intellipaat:

Next point to not is that Azure blob cannot be mounted as a native share on a virtual machine.

Now for Azure File Service, it provides Azure blob storage with an interface of SMB Protocol which solves the above problem of mounting as a native share on VM's. You can easily leverage a native Azure API straight into the Blob Storage if you are developing a new application.

You can use Azure File Service for an application using porting for file sharing.

However, Blob storage is far cheaper than File Storage.

A major advantage of File Storage is that: If you want to migrate to a different platform with Azure Blob Storage, then you may have to change the code for your application but in case of File storage, you can easily migrate your application to any other platform supporting SMB.

Hope it gives you enough limelight over this.

Related questions

Browse Categories

...