JobOperations.DeleteNodeFileAsync 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.
Supprime le fichier spécifié du répertoire de la tâche sur son nœud de calcul.
public System.Threading.Tasks.Task DeleteNodeFileAsync (string jobId, string taskId, string filePath, bool? recursive = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);
member this.DeleteNodeFileAsync : string * string * string * Nullable<bool> * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function DeleteNodeFileAsync (jobId As String, taskId As String, filePath As String, Optional recursive As Nullable(Of Boolean) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task
Paramètres
- jobId
- String
ID du travail contenant la tâche.
- taskId
- String
ID de la tâche.
- filePath
- String
Chemin d’accès du fichier à supprimer.
Si le paramètre chemin de fichier représente un répertoire au lieu d’un fichier, vous pouvez définir le paramètre récursif facultatif sur true pour supprimer le répertoire et tous les fichiers et sous-répertoires qu’il contient. Si la valeur récursive est false, le répertoire doit être vide ou la suppression échoue.
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
Collection d’instances BatchClientBehavior appliquées à la demande de service Batch après le CustomBehaviors.
- cancellationToken
- CancellationToken
CancellationToken pour contrôler la durée de vie de l’opération asynchrone.
Retours
Task qui représente l'opération asynchrone.
Remarques
L’opération de suppression s’exécute de manière asynchrone.
S’applique à
Azure SDK for .NET