cctools
|
Create a new directory recursively. More...
#include <sys/stat.h>
Go to the source code of this file.
Functions | |
int | create_dir (const char *path, mode_t mode) |
Create a new directory recursively. More... | |
int | create_dir_parents (const char *path, mode_t mode) |
Create needed parent directories of a file or directory. More... | |
Create a new directory recursively.
int create_dir | ( | const char * | path, |
mode_t | mode | ||
) |
Create a new directory recursively.
path | The full path of a directory. It is not necessary for all components of the path to exist. |
mode | The desired unix mode bits of the directory and parents. |
int create_dir_parents | ( | const char * | path, |
mode_t | mode | ||
) |
Create needed parent directories of a file or directory.
path | The full path of a file or directory. |
mode | The desired unix mode bits of the parent directories. |