#include <oskit/fs/dir.h>oskit_error_t oskit_dir_unlink(oskit_dir_t *d, const char *name);
client OS filesystem library
This method removes the directory entry for name from d.The name may only be a single component; multi-component lookups are not supported.
- d
- The directory to search.
- name
- The name of the file to be unlinked.
Returns 0 on success, or an error code specified in <oskit/error.h>, on error.