File creation property list
fcpl_id = H5F.get_create_plist(file_id)
fcpl_id = H5F.get_create_plist(file_id)
returns
a file creation property list identifier identifying the creation
properties used to create the file specified by file_id
.
fid = H5F.open('example.h5');
fcpl = H5F.get_create_plist(fid);
H5P.close(fcpl);
H5F.close(fid);