chmod 三個八進制數字 文件名
int mkdir(char *pathname, mode_t mode);
1 int main() 2 { 3 char *path="/root/tmp11"; 4 if(mkdir(path, 0754)==0) /*權限設置參數,第一個0表明八進制數,754含義同上;若是建立成功,返回0*/
5 { 6 printf("created the directory %s. \n", path); 7 } 8 else
9 { 10 printf("error\n"); 11 } 12 return 0; 13 }
int rmdir(char *pathname);
rm -rf pathname
int creat(char *pathname, mode_t mode);/*成功時返回建立文件的句柄,不然返回-1*/
int remove(char *pathname);
int flock(int fd, int operation); /*文件鎖定成功時返回0,不然返回-1*/