Folder Structure GeneratorThis VS Code extension helps you quickly scaffold folders and files using one of the following input styles: ✅ Features
📦 Usage
🧠 Supported Input Styles1. Indented FormatUse indentation to denote folder hierarchy.
Folders end with a trailing slash
src/
components/
Button.tsx
Modal.tsx
utils/
helpers.js
README.md
2. Tree FormatUse tree-like characters ( src/ ├── components/ │ ├── Button.tsx │ └── Modal.tsx └── utils/ └── helpers.js README.md 3. Multiple files per folder using commas and plus:Use commas to specify multiple files under the same folder. src/components/Button.tsx,Modal.tsx,Card.tsx+helpers/abc.js,pqr.js This will create:
src/
components/
Button.tsx
Modal.tsx
Card.tsx
helpers/
abc.js
pqr.js
app/data/api.json,config.json+app/helpers/abc.js,pqr.js
app/
data/
api.json
config.json
helpers/
abc.js
pqr.js
Notes:
Happy coding! 🚀 |