Click or drag to resize

TransferManagerCopyDirectoryAsync Method (CloudBlobDirectory, CloudFileDirectory, CopyMethod, CopyDirectoryOptions, DirectoryTransferContext, CancellationToken)

Copy an Azure blob directory to an Azure file directory.

Namespace:  Microsoft.Azure.Storage.DataMovement
Assembly:  Microsoft.Azure.Storage.DataMovement (in Microsoft.Azure.Storage.DataMovement.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
public static Task<TransferStatus> CopyDirectoryAsync(
	CloudBlobDirectory sourceBlobDir,
	CloudFileDirectory destFileDir,
	CopyMethod copyMethod,
	CopyDirectoryOptions options,
	DirectoryTransferContext context,
	CancellationToken cancellationToken
)

Parameters

sourceBlobDir
Type: CloudBlobDirectory
The CloudBlobDirectory that is the source Azure blob directory.
destFileDir
Type: CloudFileDirectory
The CloudFileDirectory that is the destination Azure file directory.
copyMethod
Type: Microsoft.Azure.Storage.DataMovementCopyMethod
A flag indicating how the copying operation is handled in DataMovement Library. See definition of CopyMethod for more details on how copying operation will be handled.
options
Type: Microsoft.Azure.Storage.DataMovementCopyDirectoryOptions
A CopyDirectoryOptions object that specifies additional options for the operation.
context
Type: Microsoft.Azure.Storage.DataMovementDirectoryTransferContext
A DirectoryTransferContext object that represents the context for the current operation.
cancellationToken
Type: System.ThreadingCancellationToken
A CancellationToken object to observe while waiting for a task to complete.

Return Value

Type: TaskTransferStatus
A TaskTResult object of type TransferStatus that represents the asynchronous operation.
See Also