CLI-based app to generate directory tree
-
Setting up your virtual environment or you can use
pipenv
. -
Run program from console
python3 tree.py [ROOT_DIR]
python3 tree.py ../test_dirtree ../test_dirtree/ │ ├── test_1/ │ ├── test_3/ │ ├── test_2/ │ ├── test_2_file_2 │ └── test_2_file │ ├── oke └── test_1_file
- Generate directory tree and display it on your terminal
python3 tree.py [ROOT_DIR]
- Generate directory tree and create output file markdown
python3 tree.py [ROOT_DIR] -o [OUTPUT_FILE]
- create output file
- add sort feature
- give tree more color