This is a simple c++ program to list the folder structure of a given folder path 💫
To Compile
g++ -std=c++17 filetree.cpp -o filetree.exe
Then run the exe file
filetree.exe "<folder_path>"
This program does not expand hidden folders/ folders that start with . like .git, .idea Also highlights folder names with blue color, .exe files yellow and .txt files with magenta.
