linux C目錄與文件一 創建目錄
創建目錄函數:mkdir
函數原型:int mkdir(char * pathname , mode_t mode);
pathname字符指針是表示需要創建的目錄路徑,mode表示權限的八進制數字。創建成功返回整形數0,否則返回整數-1
頭文件:sys/types.h 和 sys/stat.h
例子:
[root@centos-64-min file]# cat mkdir.c
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<errno.h>
int main(void)
{
extern int errno;
char * path = "/root/mkdir1";
if(mkdir(path , 0766)==0)
{
printf("created the directory %s . \n" , path);
}
else
{
printf("can't creat the directoty %s.\n , path");
printf("errno:%d\n",errno);
printf("ERR : %s\n",strerror(errno));
}
}
[root@centos-64-min file]# ./mkdir
created the directory /root/mkdir1 .