Junior Azure

What is Azure File Storage and when should you use it?

  • Provides SMB/NFS-based shared file storage.
  • Useful for legacy apps, lift-and-shift, or file shares across VMs.

Example:

var shareClient = new ShareClient(connectionString, "myfileshare");

await shareClient.CreateIfNotExistsAsync();

More from Microsoft Azure Tutorial

All questions for this course