次の方法で共有


AdlsClient.CreateFileAsync メソッド

定義

ファイルを作成し、ADLS でそのファイルにデータを書き込むストリームを返す非同期 API。 ファイルは排他アクセスで開かれます。このストリームが開いている間、追加のために同じファイルを開こうとすると失敗します。

スレッド処理: 返されるストリームはスレッド セーフではありません。

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)

パラメーター

filename
String

ファイル名

mode
IfExists

モードが Overwrite の場合、既存のファイルを上書きします

octalPermission
String

8 進数のアクセス許可文字列。null を指定できます

createParent
Boolean

true の場合、既存ではない親ディレクトリが作成されます

cancelToken
CancellationToken

要求を取り消す CancellationToken

戻り値

出力ストリーム

適用対象