Partager via


DataLakeFileSystemClient.CreateFile Méthode

Définition

L’opération CreateFile(String, DataLakePathCreateOptions, CancellationToken) crée un fichier dans ce système de fichiers. Si le fichier existe déjà, il sera remplacé. Si vous n’avez pas l’intention de remplacer un fichier existant, envisagez d’utiliser l’API CreateIfNotExists(DataLakePathCreateOptions, CancellationToken) .

Pour plus d’informations, consultez https://docs.microsoft.com/en-us/rest/api/storageservices/datalakestoragegen2/path/create.

public virtual Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileClient> CreateFile (string path, Azure.Storage.Files.DataLake.Models.DataLakePathCreateOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateFile : string * Azure.Storage.Files.DataLake.Models.DataLakePathCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileClient>
override this.CreateFile : string * Azure.Storage.Files.DataLake.Models.DataLakePathCreateOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Storage.Files.DataLake.DataLakeFileClient>
Public Overridable Function CreateFile (path As String, Optional options As DataLakePathCreateOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of DataLakeFileClient)

Paramètres

path
String

Chemin du fichier à créer.

options
DataLakePathCreateOptions

Paramètres facultatifs.

cancellationToken
CancellationToken

Facultatif CancellationToken pour propager des notifications indiquant que l’opération doit être annulée.

Retours

Response<T> décrivant le répertoire nouvellement créé.

Remarques

Un RequestFailedException sera levée en cas d’échec.

S’applique à