You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @LiorBanai,
if it's only about closing all objects, you could create a Property, set it to close-strong and give it to H5Fopen.
Something along these lines (untested):
varproperty= H5P.create(H5P.FILE_ACCESS);
H5P.set_fclose_degree(property, H5F.close_degree_t.STRONG);varfile= H5F.open("FILE_NAME", H5F.ACC_RDWR, property);
H5P.close(property);// access file
H5F.close(file);// All open objects remaining in the file are closed then file is closed
Hi,
is there are method that list all opens objects with its information?
can those be close in other call or they need to be closed individually?
The text was updated successfully, but these errors were encountered: