abfDeleteFile()
Deletes an existing ABF file.
Syntax
int abfDeleteFile(const char *path);
Inputs
- path
- The full path of the file to be deleted.
Return Value
- 0
- On success
- 1
- On failure
Example
int ret;
ret = abfDeleteFile("output.bin");
if (ret)
{
/* post error message */
}
Comments
Non-ABF files can also be deleted with this function.