Utility to create file and folder structure from input project outline in tree format.
maindir_game/
├── Cargo.toml
└── src/
├── main.rs
├── plugins/
│ ├── player_plugin.rs
python project_structure_generator.py project_structure.txt
python project_structure_generator.py project_structure.txt -y
python project_structure_generator.py project_structure.txt -d /path/to/projects
python project_structure_generator.py project_structure.txt -j project_spec.json
When you run the script, it will:
- Parse the input file
- Preview the proposed project structure
- Ask for confirmation (unless
-y
is used) - Create the project structure in the specified or current directory