AdlsClient.CreateFileAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
A API assíncrona que cria um arquivo e retorna o fluxo para gravar dados nesse arquivo no ADLS. O arquivo é aberto com acesso exclusivo – qualquer tentativa de abrir o mesmo arquivo para acréscimo falhará enquanto esse fluxo estiver aberto.
Threading: o fluxo retornado não é thread-safe.
public virtual System.Threading.Tasks.Task<Microsoft.Azure.DataLake.Store.AdlsOutputStream> CreateFileAsync (string filename, Microsoft.Azure.DataLake.Store.IfExists mode, string octalPermission = default, bool createParent = true, System.Threading.CancellationToken cancelToken = default);
abstract member CreateFileAsync : string * Microsoft.Azure.DataLake.Store.IfExists * string * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.DataLake.Store.AdlsOutputStream>
override this.CreateFileAsync : string * Microsoft.Azure.DataLake.Store.IfExists * string * bool * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.DataLake.Store.AdlsOutputStream>
Public Overridable Function CreateFileAsync (filename As String, mode As IfExists, Optional octalPermission As String = Nothing, Optional createParent As Boolean = true, Optional cancelToken As CancellationToken = Nothing) As Task(Of AdlsOutputStream)
Parâmetros
- filename
- String
Nome do arquivo
- mode
- IfExists
Substitui o arquivo existente se o modo for Substituir
- octalPermission
- String
Cadeia de caracteres de permissão octal, pode ser nula
- createParent
- Boolean
Se true criar qualquer diretório pai não existente
- cancelToken
- CancellationToken
CancellationToken para cancelar a solicitação
Retornos
Fluxo de saída
Aplica-se a
Azure SDK for .NET