Microsoft Azure Documentation

Your trusted source for Azure services.

Azure File Storage Management

Learn how to manage your Azure File shares efficiently and securely.

Introduction to Azure File Storage

Azure Files offers fully managed file shares in the cloud that are accessible via the industry-standard Server Message Block (SMB) protocol and Network File System (NFS) protocol. This means you can mount cloud share simultaneously from all of your on-premises or cloud-deployed Windows, macOS, and Linux systems.

Key Features

Managing Azure File Storage

Creating and Configuring File Shares

You can create Azure File shares using the Azure portal, Azure CLI, PowerShell, or client libraries. When creating a share, you'll define its name, tier, and quota.

Example using Azure CLI:

az storage share create --name "myshare" --account-name "mystorageaccount" --quota 1024 --output table

For more details on creation and configuration options, refer to the official Azure Files documentation.

Accessing File Shares

Accessing your file shares can be done via:

Security Best Practices

Securing your Azure File Storage is paramount. Consider the following:

Monitoring and Performance

Monitor your file shares for performance bottlenecks and usage trends using Azure Monitor. Key metrics include:

Understanding these metrics will help you optimize your file storage configuration and costs.

Common Use Cases

Azure File Storage is well-suited for a variety of scenarios:

Lift-and-shift applications

Migrate on-premises file servers to the cloud without significant application refactoring.

Shared application settings

Store configuration files and other shared data for distributed applications.

Development and testing

Provide shared storage for development teams and testing environments.

Content shares and user profiles

Centralize shared documents and manage user home directories.

Learn More