Skip to content

Utility to create file and folder structure from input project outline in format you provide as a tree structure

Notifications You must be signed in to change notification settings

gamedesigns/filestructure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

File Structure Utility

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

Example Usages

Normal Usage (with Confirmation)

python project_structure_generator.py project_structure.txt

Skip Confirmation

python project_structure_generator.py project_structure.txt -y

Specify a Different Base Directory

python project_structure_generator.py project_structure.txt -d /path/to/projects

Save JSON Specification

python project_structure_generator.py project_structure.txt -j project_spec.json

Script Execution

When you run the script, it will:

  1. Parse the input file
  2. Preview the proposed project structure
  3. Ask for confirmation (unless -y is used)
  4. Create the project structure in the specified or current directory

About

Utility to create file and folder structure from input project outline in format you provide as a tree structure

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages