FileSystemOperationsExtensions.ConcatAsync Method (IFileSystemOperations, String, String, String)

 

Concatenates the list of files into the target file.

Namespace:   Microsoft.Azure.Management.DataLake.StoreFileSystem
Assembly:  Microsoft.Azure.Management.DataLake.StoreFileSystem (in Microsoft.Azure.Management.DataLake.StoreFileSystem.dll)

Syntax

public static Task<AzureOperationResponse> ConcatAsync(
    this IFileSystemOperations operations,
    string destinationPath,
    string accountName,
    string paths
)
public:
[ExtensionAttribute]
static Task<AzureOperationResponse^>^ ConcatAsync(
    IFileSystemOperations^ operations,
    String^ destinationPath,
    String^ accountName,
    String^ paths
)
static member ConcatAsync : 
        operations:IFileSystemOperations *
        destinationPath:string *
        accountName:string *
        paths:string -> Task<AzureOperationResponse>
<ExtensionAttribute>
Public Shared Function ConcatAsync (
    operations As IFileSystemOperations,
    destinationPath As String,
    accountName As String,
    paths As String
) As Task(Of AzureOperationResponse)

Parameters

  • destinationPath
    Type: System.String

    Required. The path to the destination file resulting from the concatenation.

  • accountName
    Type: System.String

    Required. The name of the account to use

  • paths
    Type: System.String

    Required. A list of comma seperated absolute FileSystem paths without scheme and authority

Return Value

Type: System.Threading.Tasks.Task<AzureOperationResponse>

A standard service response including an HTTP status code and request ID.

See Also

FileSystemOperationsExtensions Class
Microsoft.Azure.Management.DataLake.StoreFileSystem Namespace

Return to top