[linux]简单实现的shell中的 tree 命令。 博客分类: linux_app
程序员文章站
2024-03-02 17:09:16
...
Linux下有这样一个命令,可以把当前目录下的所有文件和子文件以tree的方式显示出来,看下效果
- [www.linuxidc.com@localhost test]$ tree
- .
- |-- A
- |-- B
- |-- C
- `-- test2
- |-- D
- |-- E
- `-- F
- 3 directories, 4 files
- [crazybaby@localhost test]$
自己用递归方式用C实现了下,效果如下:
- [www.linuxidc.com@localhost test]$ ./a.out
- ./test
- A
- a.out
- B
- C
- +test2
- F
- +D
- +E
- [crazybaby@localhost test]$
这里+号表示directory.
下面是源码:
- #include <iostream>
- #include <sys/stat.h>
- #include <dirent.h>
- #include <vector>
- using namespace std;
- int showConsoleDir(char* path, int cntFloor) {
- DIR* dir;
- DIR* dir_child;
- struct dirent* dir_ent;
- if ((dir = opendir(path))==NULL) { //open current directory
- cout<<"open dir failed!"<<endl;
- return -1;
- }
- while ((dir_ent = readdir(dir))!=NULL) {
- if ((dir_ent->d_name[0] == '.') || (strcmp(dir_ent->d_name, "..") ==0)){ //if . or .. directory continue
- continue;
- }
- char tName[10000];
- memset(tName, 0, 10000);
- snprintf(tName,sizeof(tName),"%s/%s",path,dir_ent->d_name);
- if ((dir_child = opendir(tName))!=NULL){ //if have a directory
- int t = cntFloor;
- while (t--) {
- cout<<" ";
- }
- cout<<"+"<<dir_ent->d_name<<endl;
- showConsoleDir(tName, cntFloor+1);
- }
- else
- {
- int t = cntFloor;
- while (t--) {
- cout<<" ";
- }
- cout<<dir_ent->d_name<<endl;
- }
- }
- }
- int main(int argc, char* argv[]){
- int cntFloor=1;
- showConsoleDir("./", cntFloor);
- }
推荐阅读
-
[linux]简单实现的shell中的 tree 命令。 博客分类: linux_app
-
[SHELL]用于快速搜索C++/C/JAVA/汇编等源代码的SHELL脚本 博客分类: linux_app
-
【转载】关闭ftp中mput的上传确认提示:prompt 博客分类: linux命令 linuxftpprompt去掉确认
-
【转】Shell中脚本变量和函数变量的作用域 博客分类: linux命令unix shell作用域shelllocal函数变量
-
【转载】关闭ftp中mput的上传确认提示:prompt 博客分类: linux命令 linuxftpprompt去掉确认
-
linux 在shell脚本中获取该脚本的所在绝对路径2 博客分类: linux命令unix linux绝对路径shell脚本
-
linux 在shell脚本中获取该脚本的所在绝对路径2 博客分类: linux命令unix linux绝对路径shell脚本
-
【转】Shell中脚本变量和函数变量的作用域 博客分类: linux命令unix shell作用域shelllocal函数变量
-
linux 在shell脚本中获取该脚本的所在绝对路径 博客分类: unixlinux命令 linux获取脚本绝对路径绝对路径shellabsolute
-
linux 在shell脚本中获取该脚本的所在绝对路径 博客分类: unixlinux命令 linux获取脚本绝对路径绝对路径shellabsolute