c/c++递归打印文件夹
2022/5/3 20:12:45
本文主要是介绍c/c++递归打印文件夹,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
调用linux的系统函数,实现tree的功能,递归打印文件夹
使用到得函数:
DIR *opendir(const char *name); // 打开文件夹 struct dirent *readdir(DIR *dirp); // 遍历文件夹 int closedir(DIR *dirp); // 关闭文件夹
代码如下:
/** * 递归打印文件夹 * @param filePath 要打印的文件路径 * @param space 当前文件夹的层次 */ void printFileTree(string filePath, int space) { string currPath = filePath; // 保存当前路径 DIR *dir = opendir(filePath.c_str()); // 打开当前文件夹 if (dir == nullptr) return; // 如果文件夹为空,则退出 dirent *dirTree; // readdir函数读取完当前文件后,会自动跳到下一个文件,如果读取完毕,会返回nullptr while ((dirTree = readdir(dir))) { // 不打印. ..以及隐藏的文件 if (dirTree->d_name[0] == '.' || strcmp(dirTree->d_name, "..") == 0) continue; for (int i = 0; i < space; ++i) { // 打印提示符 if (i == space - 1) cout << "|---"; else cout << "| "; } cout << dirTree->d_name << endl; // 打印当前文件名 if (dirTree->d_type == DT_DIR) { printFileTree(currPath + '/' + dirTree->d_name, space + 1); // 如果是文件夹,则继续递归 } } closedir(dir); // 关闭当前文件夹 }
结果展示
这篇关于c/c++递归打印文件夹的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享
- 2024-11-01如何使用Svg Sprite Icon简化网页图标管理
- 2024-10-31Excel数据导出课程:新手从入门到精通的实用教程
- 2024-10-31Excel数据导入课程:新手入门指南
- 2024-10-31RBAC的权限课程:新手入门教程
- 2024-10-31Svg Sprite Icon课程:新手入门必备指南
- 2024-10-31怎么配置 L2TP 允许多用户连接-icode9专业技术文章分享
- 2024-10-31怎么在FreeBSD上 安装 OpenResty-icode9专业技术文章分享
- 2024-10-31运行 modprobe l2tp_ppp 时收到“module not found”消息提醒是什么-icode9专业技术文章分享
- 2024-10-31FreeBSD的下载命令有哪些-icode9专业技术文章分享