unlink and remove a file; remove is the ANSI name for unlink.
#include <io.h> int unlink (const char *filename); /* OR */ #include <stdio.h> int remove (const char *filename);
filename
| EACCES | Pathname specifies a read-only file. |
| ENOENT | File or pathname not found, or pathname specifies a directory. |
| Versions | Defined in | Include | Link to |
|---|---|---|---|
| INtime 3.0 | intime/rt/include/io.h or intime/rt/include/stdio.h |
io.h or stdio.h |
clib.lib |