-
-
Notifications
You must be signed in to change notification settings - Fork 265
/
h5ex_g_create.c
45 lines (34 loc) · 1 KB
/
h5ex_g_create.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/************************************************************
This example shows how to create, open, and close a group.
This file is intended for use with HDF5 Library version 1.8
************************************************************/
#include "hdf5.h"
#define FILE "h5ex_g_create.h5"
int
main(void)
{
hid_t file = H5I_INVALID_HID;
hid_t group = H5I_INVALID_HID;
herr_t status;
/*
* Create a new file using the default properties.
*/
file = H5Fcreate(FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
/*
* Create a group named "G1" in the file.
*/
group = H5Gcreate(file, "/G1", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
/*
* Close the group. The handle "group" can no longer be used.
*/
status = H5Gclose(group);
/*
* Re-open the group, obtaining a new handle.
*/
group = H5Gopen(file, "/G1", H5P_DEFAULT);
/*
* Close and release resources.
*/
status = H5Gclose(group);
status = H5Fclose(file);
}