#include <sys/stat.h>
#include <sys/types.h>
int mkdir(const char *pathname, mode_t mode);
#include <fcntl.h>
#include <sys/stat.h>
int mkdirat(int dirfd, const char *pathname, mode_t mode);
//返回值:成功返回0;出错返回-1
新建目录的用户ID和用户组ID
二、目录的删除早期的时候
#include <unistd.h>
int rmdir(const char *pathname);
//返回值:成功返回0;出错返回-1
- 使用这个命令,指定的目录必须是空的