2019年5月24日

目录文件的操作函数 mkdir ,opendir,readdir,closedir

摘要: 1. int mkdir(const char *pathname, mode_t mode); 头文件 :<sys/stat.h> <sys/types.h> 功能:创建一个目录 参数:pathname:目录的路径名 mode:目录的权限(可读,可写,可执行) 返回值:成功返回0,失败返回-1 2 阅读全文

posted @ 2019-05-24 20:43 管理员D 阅读(842) 评论(0) 推荐(0) 编辑

获取文件或目录的属性 stat 函数

摘要: 头文件: <sys/types.h> <sys/stat.h> <unistd.h> int stat(const char *path, struct stat *buf); 成功返回0 ,失败返回-1 int fstat(int fd, struct stat *buf); int lstat( 阅读全文

posted @ 2019-05-24 20:22 管理员D 阅读(561) 评论(0) 推荐(0) 编辑

导航