04目录
一、目录
1、打开目录
1 | DIR *opendir(const char *name); |
2、遍历目录(读取目录项)
1 | struct dirent *readdir(DIR *dirp);//读取目录获取目录项 |
2.1目录结构体中的成员
1 | struct dirent |
3、关闭目录
1 | int closedir(DIR *dirp); |
二、路径操作
1、获取当前路径
1 | char buf[100] = {0}; |
2、切换目录
1 | chdir("../"); //回到上一级目录 |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.