TransferManagerCopyAsync Method (Uri, CloudFile, Boolean) |
Copy file from an specified URI to an Azure file.
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 CopyAsync(
Uri sourceUri,
CloudFile destFile,
bool isServiceCopy
)
Public Shared Function CopyAsync (
sourceUri As Uri,
destFile As CloudFile,
isServiceCopy As Boolean
) As Task
public:
static Task^ CopyAsync(
Uri^ sourceUri,
CloudFile^ destFile,
bool isServiceCopy
)
static member CopyAsync :
sourceUri : Uri *
destFile : CloudFile *
isServiceCopy : bool -> Task
Parameters
- sourceUri
- Type: SystemUri
The Uri of the source file. - destFile
- Type: CloudFile
The CloudFile that is the destination Azure file. - isServiceCopy
- Type: SystemBoolean
A flag indicating whether the copy is service-side asynchronous copy or not.
If this flag is set to true, service-side asychronous copy will be used; if this flag is set to false,
file is downloaded from source first, then uploaded to destination.
Return Value
Type:
TaskA
Task object that represents the asynchronous operation.
Remarks Copying from an URI to Azure file synchronously is not supported yet.
See Also