AdlsClient.CreateFile(String, IfExists, String, Boolean) 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.
API synchrone qui crée un fichier et retourne le flux pour écrire des données dans ce fichier dans ADLS. Le fichier est ouvert avec un accès exclusif : toute tentative d’ouverture du même fichier pour ajout échoue pendant l’ouverture de ce flux.
Threading : le flux retourné n’est pas thread-safe.
public virtual Microsoft.Azure.DataLake.Store.AdlsOutputStream CreateFile (string filename, Microsoft.Azure.DataLake.Store.IfExists mode, string octalPermission = default, bool createParent = true);
abstract member CreateFile : string * Microsoft.Azure.DataLake.Store.IfExists * string * bool -> Microsoft.Azure.DataLake.Store.AdlsOutputStream
override this.CreateFile : string * Microsoft.Azure.DataLake.Store.IfExists * string * bool -> Microsoft.Azure.DataLake.Store.AdlsOutputStream
Public Overridable Function CreateFile (filename As String, mode As IfExists, Optional octalPermission As String = Nothing, Optional createParent As Boolean = true) As AdlsOutputStream
Paramètres
- filename
- String
Nom de fichier
- mode
- IfExists
Remplace le fichier existant si le mode est Remplacer
- octalPermission
- String
Chaîne d’autorisation octal
- createParent
- Boolean
Si true crée des répertoires parents non existants
Retours
Flux de sortie
S’applique à
Azure SDK for .NET