FileSystemOperationsExtensions.BeginAppend Method (IFileSystemOperations, String, String, Nullable<Int32>)

 

Initiates a file append request, resulting in a return of the data node location that will service the request.

Namespace:   Microsoft.Azure.Management.DataLake.StoreFileSystem
Assembly:  Microsoft.Azure.Management.DataLake.StoreFileSystem (in Microsoft.Azure.Management.DataLake.StoreFileSystem.dll)

Syntax

public static FileCreateOpenAndAppendResponse BeginAppend(
    this IFileSystemOperations operations,
    string filePath,
    string accountName,
    Nullable<int> bufferSize
)
public:
[ExtensionAttribute]
static FileCreateOpenAndAppendResponse^ BeginAppend(
    IFileSystemOperations^ operations,
    String^ filePath,
    String^ accountName,
    Nullable<int> bufferSize
)
static member BeginAppend : 
        operations:IFileSystemOperations *
        filePath:string *
        accountName:string *
        bufferSize:Nullable<int> -> FileCreateOpenAndAppendResponse
<ExtensionAttribute>
Public Shared Function BeginAppend (
    operations As IFileSystemOperations,
    filePath As String,
    accountName As String,
    bufferSize As Nullable(Of Integer)
) As FileCreateOpenAndAppendResponse

Parameters

  • filePath
    Type: System.String

    Required. The path to the file to create.

  • accountName
    Type: System.String

    Required. The name of the account to use

  • bufferSize
    Type: System.Nullable<Int32>

    Required. The optional buffer size to use when appending data

Return Value

Type: Microsoft.Azure.Management.DataLake.StoreFileSystem.Models.FileCreateOpenAndAppendResponse

The data from the file requested.

See Also

FileSystemOperationsExtensions Class
Microsoft.Azure.Management.DataLake.StoreFileSystem Namespace

Return to top