Compartir a través de


FileSystemOperationsExtensions.Open (Método) (IFileSystemOperations, String, String, Nullable<Int64>, Nullable<Int64>)

 

Abre y lee desde el archivo especificado.

Espacio de nombres:   Microsoft.Azure.Management.DataLake.Store
Ensamblado:  Microsoft.Azure.Management.DataLake.Store (en Microsoft.Azure.Management.DataLake.Store.dll)

Sintaxis

public static Stream Open(
    this IFileSystemOperations operations,
    string accountName,
    string directFilePath,
    Nullable<long> length = null,
    Nullable<long> offset = null
)
public:
[ExtensionAttribute]
static Stream^ Open(
    IFileSystemOperations^ operations,
    String^ accountName,
    String^ directFilePath,
    Nullable<long long> length = null,
    Nullable<long long> offset = null
)
static member Open : 
        operations:IFileSystemOperations *
        accountName:string *
        directFilePath:string *
        length:Nullable<int64> = null *
        offset:Nullable<int64> = null -> Stream
<ExtensionAttribute>
Public Shared Function Open (
    operations As IFileSystemOperations,
    accountName As String,
    directFilePath As String,
    length As Nullable(Of Long),
    offset As Nullable(Of Long)
) As Stream

Parámetros

  • accountName
    Type: System.String

    Para ejecutar operaciones de sistema de archivos en la cuenta de Azure Data Lake Store.

  • directFilePath
    Type: System.String

    La ruta de acceso del almacén de datos Lake (comenzando por '/') de abrir el archivo.

Valor devuelto

Type: System.IO.Stream

Vea también

FileSystemOperationsExtensions (Clase)
Microsoft.Azure.Management.DataLake.Store (Espacio de nombres)

Volver al principio