![]() |
VOOZH | about |
dotnet add package Azure.Storage.DataMovement.Blobs --version 12.3.0
NuGet\Install-Package Azure.Storage.DataMovement.Blobs -Version 12.3.0
<PackageReference Include="Azure.Storage.DataMovement.Blobs" Version="12.3.0" />
<PackageVersion Include="Azure.Storage.DataMovement.Blobs" Version="12.3.0" />Directory.Packages.props
<PackageReference Include="Azure.Storage.DataMovement.Blobs" />Project file
paket add Azure.Storage.DataMovement.Blobs --version 12.3.0
#r "nuget: Azure.Storage.DataMovement.Blobs, 12.3.0"
#:package Azure.Storage.DataMovement.Blobs@12.3.0
#addin nuget:?package=Azure.Storage.DataMovement.Blobs&version=12.3.0Install as a Cake Addin
#tool nuget:?package=Azure.Storage.DataMovement.Blobs&version=12.3.0Install as a Cake Tool
Azure Storage is a Microsoft-managed service providing cloud storage that is highly available, secure, durable, scalable, and redundant.
The Azure Storage Data Movement Blobs library is optimized for uploading, downloading and copying blobs.
The Azure.Storage.DataMovement.Blobs library provides infrastructure shared by the other Azure Storage client libraries.
Source code | Package (NuGet) | API reference documentation | REST API documentation | Product documentation
Install the Azure Storage Data Movement Blobs client library for .NET with NuGet:
dotnet add package Azure.Storage.DataMovement.Blobs
You need an Azure subscription and a Storage Account to use this package.
To create a new Storage Account, you can use the Azure Portal, Azure PowerShell, or the Azure CLI. Here's an example using the Azure CLI:
az storage account create --name MyStorageAccount --resource-group MyResourceGroup --location westus --sku Standard_LRS
The Azure.Storage.DataMovement.Blobs library uses clients from the Azure.Storage.Blobs package to communicate with the Azure Blob Storage service. For more information see the Azure.Storage.Blobs authentication documentation.
The authenticated blob storage resource needs the following permissions to perform a transfer:
The Azure Storage Common client library contains shared infrastructure like [authentication credentials][auth_credentials] and RequestFailedException.
We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.
Client options | Accessing the response | Long-running operations | Handling failures | Diagnostics | Mocking | Client lifetime
This section demonstrates usage of Data Movement for interacting with blob storage.
The TransferManager is the primary class for managing data transfers between storage resources. See Setup the TransferManager sample.
StorageResourceAzure.Storage.DataMovement.Blobs exposes BlobsStorageResourceProvider to create StorageResource instances for each type of blob (block, page, append) as well as a blob container. The resource provider should be initialized with a credential to properly authenticate the storage resources. The following demonstrates this using an Azure.Core token credential.
BlobsStorageResourceProvider blobs = new(tokenCredential);
To create a blob StorageResource, use the methods FromBlob or FromContainer.
StorageResource container = await blobs.FromContainerAsync(
new Uri("https://myaccount.blob.core.windows.net/container"));
// Block blobs are the default if no options are specified
StorageResource blockBlob = await blobs.FromBlobAsync(
new Uri("https://myaccount.blob.core.windows.net/container/sample-blob-block"),
new BlockBlobStorageResourceOptions());
StorageResource pageBlob = await blobs.FromBlobAsync(
new Uri("https://myaccount.blob.core.windows.net/container/sample-blob-page"),
new PageBlobStorageResourceOptions());
StorageResource appendBlob = await blobs.FromBlobAsync(
new Uri("https://myaccount.blob.core.windows.net/container/sample-blob-append"),
new AppendBlobStorageResourceOptions());
Storage resources can also be initialized with the appropriate client object from Azure.Storage.Blobs. Since these resources will use the credential already present in the client object, no credential is required in the provider when using FromClient(). However, a BlobsStorageResourceProvider must still have a credential if it is to be used in TransferManagerOptions for resuming a transfer.
StorageResource containerResource = BlobsStorageResourceProvider.FromClient(blobContainerClient);
StorageResource blockBlobResource = BlobsStorageResourceProvider.FromClient(blockBlobClient);
StorageResource pageBlobResource = BlobsStorageResourceProvider.FromClient(pageBlobClient);
StorageResource appendBlobResource = BlobsStorageResourceProvider.FromClient(appendBlobClient);
There are more options which can be used when creating a blob storage resource. Below are some examples.
BlobStorageResourceContainerOptions virtualDirectoryOptions = new()
{
BlobPrefix = "blob/directory/prefix"
};
StorageResource virtualDirectoryResource = BlobsStorageResourceProvider.FromClient(
blobContainerClient,
virtualDirectoryOptions);
BlockBlobStorageResourceOptions resourceOptions = new()
{
Metadata = new Dictionary<string, string>
{
{ "key", "value" }
}
};
StorageResource leasedBlockBlobResource = BlobsStorageResourceProvider.FromClient(
blockBlobClient,
resourceOptions);
An upload takes place between a local file StorageResource as source and blob StorageResource as destination.
Upload a block blob.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: LocalFilesStorageResourceProvider.FromFile(sourceLocalPath),
destinationResource: await blobs.FromBlobAsync(destinationBlobUri));
await transferOperation.WaitForCompletionAsync();
Upload a directory as a specific blob type.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: LocalFilesStorageResourceProvider.FromDirectory(sourcePath),
destinationResource: await blobs.FromContainerAsync(
blobContainerUri,
new BlobStorageResourceContainerOptions()
{
// Block blobs are the default if not specified
BlobType = BlobType.Block,
BlobPrefix = optionalDestinationPrefix,
}));
A download takes place between a blob StorageResource as source and local file StorageResource as destination.
Download a blob.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: await blobs.FromBlobAsync(sourceBlobUri),
destinationResource: LocalFilesStorageResourceProvider.FromFile(downloadPath));
await transferOperation.WaitForCompletionAsync();
Download a container which may contain a mix of blob types.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: await blobs.FromContainerAsync(
blobContainerUri,
new BlobStorageResourceContainerOptions()
{
BlobPrefix = optionalSourcePrefix
}),
destinationResource: LocalFilesStorageResourceProvider.FromDirectory(downloadPath));
await transferOperation.WaitForCompletionAsync();
A copy takes place between two blob StorageResource instances. Copying between to Azure blobs uses PUT from URL REST APIs, which do not transfer data through the machine running DataMovement.
Copy a single blob. Note the destination blob is an append blob, regardless of the first blob's type.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: await blobs.FromBlobAsync(sourceBlobUri),
destinationResource: await blobs.FromBlobAsync(destinationBlobUri, new AppendBlobStorageResourceOptions()));
await transferOperation.WaitForCompletionAsync();
Copy a blob container.
TransferOperation transferOperation = await transferManager.StartTransferAsync(
sourceResource: await blobs.FromContainerAsync(
sourceContainerUri,
new BlobStorageResourceContainerOptions()
{
BlobPrefix = sourceDirectoryName
}),
destinationResource: await blobs.FromContainerAsync(
destinationContainerUri,
new BlobStorageResourceContainerOptions()
{
// all source blobs will be copied as a single type of destination blob
// defaults to block blobs if unspecified
BlobType = BlobType.Block,
BlobPrefix = downloadPath
}));
await transferOperation.WaitForCompletionAsync();
To resume a transfer with Blob(s), valid credentials must be provided. See the sample below.
TokenCredential tokenCredential = new DefaultAzureCredential();
BlobsStorageResourceProvider blobs = new(tokenCredential);
TransferManager transferManager = new TransferManager(new TransferManagerOptions()
{
ProvidersForResuming = new List<StorageResourceProvider>() { blobs }
});
// Get resumable transfers from transfer manager
await foreach (TransferProperties properties in transferManager.GetResumableTransfersAsync())
{
// Resume the transfer
if (properties.SourceUri.AbsoluteUri == "https://storageaccount.blob.core.windows.net/containername/blobpath")
{
await transferManager.ResumeTransferAsync(properties.TransferId);
}
}
For more information regarding pause, resume, and/or checkpointing, see Pause and Resume Checkpointing.
BlobContainerClientFor applications with preexisting code using Azure.Storage.Blobs, this package provides extension methods for BlobContainerClient to get some of the benefits of the TransferManager with minimal extra code.
Instantiate the BlobContainerClient
BlobServiceClient service = new BlobServiceClient(serviceUri, credential);
BlobContainerClient container = service.GetBlobContainerClient(containerName);
Upload a local directory to the root of the container
TransferOperation transfer = await container.UploadDirectoryAsync(WaitUntil.Started, localPath);
await transfer.WaitForCompletionAsync();
Upload a local directory to a virtual directory in the container by specifying a directory prefix
TransferOperation transfer = await container.UploadDirectoryAsync(WaitUntil.Started, localPath, blobDirectoryPrefix);
await transfer.WaitForCompletionAsync();
Upload a local directory to a virtual directory in the container specifying more advanced options
BlobContainerClientTransferOptions options = new BlobContainerClientTransferOptions
{
BlobContainerOptions = new BlobStorageResourceContainerOptions
{
BlobPrefix = blobDirectoryPrefix
},
TransferOptions = new TransferOptions()
{
CreationMode = StorageResourceCreationMode.OverwriteIfExists,
}
};
TransferOperation transfer = await container.UploadDirectoryAsync(WaitUntil.Started, localPath, options);
await transfer.WaitForCompletionAsync();
Download the entire container to a local directory
TransferOperation transfer = await container.DownloadToDirectoryAsync(WaitUntil.Started, localDirectoryPath);
await transfer.WaitForCompletionAsync();
Download a directory in the container by specifying a directory prefix
TransferOperation transfer = await container.DownloadToDirectoryAsync(WaitUntil.Started, localDirectoryPath2, blobDirectoryPrefix);
await transfer.WaitForCompletionAsync();
Download from the container specifying more advanced options
BlobContainerClientTransferOptions options = new BlobContainerClientTransferOptions
{
BlobContainerOptions = new BlobStorageResourceContainerOptions
{
BlobPrefix = blobDirectoryPrefix
},
TransferOptions = new TransferOptions()
{
CreationMode = StorageResourceCreationMode.OverwriteIfExists,
}
};
TransferOperation transfer = await container.DownloadToDirectoryAsync(WaitUntil.Started, localDirectoryPath2, options);
await transfer.WaitForCompletionAsync();
See Handling Failed Transfers and Enabling Logging to assist with any troubleshooting.
See Known Issues for detailed information.
Get started with our Share Files Samples.
For more base Transfer Manager scenarios see DataMovement samples.
See the Storage CONTRIBUTING.md for details on building, testing, and contributing to these libraries.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit cla.microsoft.com.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact with any additional questions or comments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on Azure.Storage.DataMovement.Blobs:
| Package | Downloads |
|---|---|
|
HHDev.CanopyApi
Library that provides functionality for users of the Canopy Simulations portal to submit and download studies directly through the HH DM client. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 12.3.0 | 67,415 | 10/21/2025 |
| 12.3.0-beta.1 | 786 | 9/16/2025 |
| 12.2.2 | 18,830 | 9/10/2025 |
| 12.2.1 | 27,085 | 8/6/2025 |
| 12.2.0 | 9,945 | 7/21/2025 |
| 12.2.0-beta.1 | 382 | 6/17/2025 |
| 12.1.0 | 62,955 | 2/27/2025 |
| 12.0.0 | 20,782 | 2/11/2025 |
| 12.0.0-beta.6 | 188,609 | 10/14/2024 |
| 12.0.0-beta.5 | 6,736 | 7/17/2024 |
| 12.0.0-beta.4 | 30,337 | 12/5/2023 |
| 12.0.0-beta.3 | 25,598 | 7/11/2023 |
| 12.0.0-beta.2 | 7,385 | 4/27/2023 |
| 12.0.0-beta.1 | 833 | 12/16/2022 |