Core.ConcatAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ConcatAsync(String, List<String>, AdlsClient, RequestOptions, OperationResponse, CancellationToken) |
Concaténer des fichiers sources dans un fichier de destination. Par défaut, il ne supprime pas le répertoire source |
ConcatAsync(String, List<String>, Boolean, AdlsClient, RequestOptions, OperationResponse, CancellationToken) |
Concaténer des fichiers sources dans un fichier de destination |
ConcatAsync(String, List<String>, AdlsClient, RequestOptions, OperationResponse, CancellationToken)
Concaténer des fichiers sources dans un fichier de destination. Par défaut, il ne supprime pas le répertoire source
public static System.Threading.Tasks.Task ConcatAsync (string path, System.Collections.Generic.List<string> sourceFiles, Microsoft.Azure.DataLake.Store.AdlsClient client, Microsoft.Azure.DataLake.Store.RequestOptions req, Microsoft.Azure.DataLake.Store.OperationResponse resp, System.Threading.CancellationToken cancelToken = default);
static member ConcatAsync : string * System.Collections.Generic.List<string> * Microsoft.Azure.DataLake.Store.AdlsClient * Microsoft.Azure.DataLake.Store.RequestOptions * Microsoft.Azure.DataLake.Store.OperationResponse * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Shared Function ConcatAsync (path As String, sourceFiles As List(Of String), client As AdlsClient, req As RequestOptions, resp As OperationResponse, Optional cancelToken As CancellationToken = Nothing) As Task
Paramètres
- path
- String
Chemin d’accès de la destination
- client
- AdlsClient
ADLS Client
- req
- RequestOptions
Options permettant de modifier le comportement de la requête HTTP
- resp
- OperationResponse
Stocke la réponse/l’ouput de la requête HTTP
- cancelToken
- CancellationToken
CancellationToken pour annuler la demande
Retours
S’applique à
ConcatAsync(String, List<String>, Boolean, AdlsClient, RequestOptions, OperationResponse, CancellationToken)
Concaténer des fichiers sources dans un fichier de destination
public static System.Threading.Tasks.Task ConcatAsync (string path, System.Collections.Generic.List<string> sourceFiles, bool deleteSourceDirectory, Microsoft.Azure.DataLake.Store.AdlsClient client, Microsoft.Azure.DataLake.Store.RequestOptions req, Microsoft.Azure.DataLake.Store.OperationResponse resp, System.Threading.CancellationToken cancelToken = default);
static member ConcatAsync : string * System.Collections.Generic.List<string> * bool * Microsoft.Azure.DataLake.Store.AdlsClient * Microsoft.Azure.DataLake.Store.RequestOptions * Microsoft.Azure.DataLake.Store.OperationResponse * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Shared Function ConcatAsync (path As String, sourceFiles As List(Of String), deleteSourceDirectory As Boolean, client As AdlsClient, req As RequestOptions, resp As OperationResponse, Optional cancelToken As CancellationToken = Nothing) As Task
Paramètres
- path
- String
Chemin d’accès de la destination
- deleteSourceDirectory
- Boolean
Si la valeur est true, supprime le répertoire source si tous les fichiers qu’il contient sont concaténés
- client
- AdlsClient
ADLS Client
- req
- RequestOptions
Options permettant de modifier le comportement de la requête HTTP
- resp
- OperationResponse
Stocke la réponse/l’ouput de la requête HTTP
- cancelToken
- CancellationToken
CancellationToken pour annuler la demande
Retours
S’applique à
Azure SDK for .NET