Unlink recursively.
More...
#include "compat-at.h"
#include <fcntl.h>
Go to the source code of this file.
int unlinkat_recursive |
( |
int |
fd, |
|
|
const char * |
path |
|
) |
| |
Delete a path recursively.
- Parameters
-
fd | Open directory. |
path | The path relative to the open directory fd to unlink recursively. |
- Returns
- 0 on success, -1 on failure.
int unlink_recursive |
( |
const char * |
path | ) |
|
Delete a path recursively.
- Parameters
-
path | The path to unlink recursively. |
- Returns
- 0 on success, -1 on failure.
int unlink_dir_contents |
( |
const char * |
path | ) |
|
Unlink only the contents of the directory recursively.
- Parameters
-
path | The path of the directory. |
- Returns
- 0 on success, -1 on failure.