Given ncid, find complete name of group. (Root group is named "/").
The name provided by this function is a full path name for the group is, with all parent groups included, separated with a forward slash (as in Unix directory names). For a name relative to the parent group See NF_INQ_GRPNAME.
To find the length of the full name See NF_INQ_GRPNAME_LEN.
INTEGER FUNCTION NF_INQ_GRPNAME_FULL(INTEGER NCID, INTEGER LEN, CHARACTER*(*) NAME)
NCID
LEN
NAME
NF_NOERR
NF_EBADID
NF_ENOTNC4
NF_ESTRICTNC3
NF_EHDFERR
This example is from nf_test/ftst_groups.F.
C Check the full name. retval = nf_inq_grpname_full(grpids(1), full_name_len, name_in2) if (retval .ne. nf_noerr) call handle_err(retval)