A Python utility that generates a visual folder structure tree in Markdown format for documentation purposes.
pip install -r requirements.txtRun the script in any directory to generate a folder structure:
python main.pyThis creates a folder_structure.md file with a tree view of the current directory.
Create a standalone executable:
python build.pyOr on Windows:
build.batThe executable will be created in the dist/ folder.
- Automatically excludes common build artifacts (
node_modules,.git,dist, etc.) - Generates clean Markdown output
- Cross-platform support
- Can be built into a standalone executable
# Folder Structure
**Base Directory:** `/path/to/project`
**Generated On:** 2023-10-07 06:30:00 AM
project/ ├── src/ │ ├── components/ │ └── utils/ ├── tests/ └── README.md