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
operations
Type: Microsoft.Azure.Management.DataLake.Store.IFileSystemOperationsEl grupo de operaciones de este método de extensión.
accountName
Type: System.StringPara ejecutar operaciones de sistema de archivos en la cuenta de Azure Data Lake Store.
directFilePath
Type: System.StringLa ruta de acceso del almacén de datos Lake (comenzando por '/') de abrir el archivo.
- length
Type: System.Nullable<Int64>
- offset
Type: System.Nullable<Int64>
Valor devuelto
Type: System.IO.Stream
Vea también
FileSystemOperationsExtensions (Clase)
Microsoft.Azure.Management.DataLake.Store (Espacio de nombres)
Volver al principio