DeleteRFile Delete ISAM file and associated indices. Short Name DELRFIL() Type ISAM function Declaration COUNT DeleteRFile(COUNT datno) Description DeleteRFile() deletes the file and indices referenced by the ISAM data file with file number datno, if and only if the file and indices have been opened in exclusive mode. Return
See c-tree Plus Error Codes for a complete listing of valid c-tree Plus error values. Example COUNT datno = 5; TEXT filnam[15];
scanf("%14s", filnam);
if (OpenFileWithResource(datno, filnam, ctEXCLUSIVE)) printf("\nCould not open data file or index, error = %d,
file = %d",isam_err,isam_fil); else if (DeleteRFile(datno)) printf("\nCould not delete data file or index, error = %d,
file = %d",isam_err,isam_fil); Limitations DeleteRFile() calls the low-level DeleteCtFile() function, which first closes the file before deletion. In a non-server model, this permits another process to have a small window of opportunity to gain control of the file in which case the delete will fail and result in an error DLTF_ERR (55). See also DeleteIFile() which deletes files based on incremental ISAM structures and DeleteCtFile() |
|||||||||||||||