Skip Navigation Links.

H5F..::..open Method (, H5F..::..OpenMode, H5PropertyListId)

open an existing HDF5 file.

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Function open ( _
	filename As String, _
	mode As H5F..::..OpenMode, _
	propertyListId As H5PropertyListId _
) As H5FileId
C#
public static H5FileId open(
	string filename,
	H5F..::..OpenMode mode,
	H5PropertyListId propertyListId
)
Visual C++
public:
static H5FileId^ open(
	String^ filename, 
	H5F..::..OpenMode mode, 
	H5PropertyListId^ propertyListId
)
JavaScript
HDF5DotNet.H5F.open = function(filename, mode, propertyListId);

Parameters

filename
Type: String
IN: Name of the file to access.
mode
Type: HDF5DotNet..::..H5F..::..OpenMode
IN: File access mode (e.g., OpenMode.ACC_RDONLY)
propertyListId
Type: HDF5DotNet..::..H5PropertyListId
IN: Identifier for the file access properties list. If parallel file access is desired, this is a collective call according to the communicator stored in the access_id.

See Also