An open API service indexing awesome lists of open source software.

https://github.com/sla-ppy/002-tree_command

[F] Tree command implementation in C++
https://github.com/sla-ppy/002-tree_command

cpp early-attempts

Last synced: about 1 year ago
JSON representation

[F] Tree command implementation in C++

Awesome Lists containing this project

README

          

## tree_command:
### Reproduce a very simple tree program that walks the current directory tree.
### Use std::filesystem.
____
Example output:
```
C:\src\Volty> tree.exe
src
├── Core
│ ├── Application.cpp
│ ├── GameWindow.cpp
│ ├── HID.cpp
│ ├── Math.cpp
│ └── World.cpp
└── Utils
├── ArgsParser.cpp
├── CsvLogger.cpp
├── LazyFile.cpp
├── ResourceManager.cpp
└── stl_ext.cpp

2 directories, 10 files
```
____
Simplified to:
```
src
|--- Core
|--- Application.cpp
|--- GameWindow.cpp
|--- Utils
|--- LazyFile.cpp
```