Folder Structure Generator
A Visual Studio Code extension that generates folder structures from plain text input.
Features
- Create multiple folders and files with proper indentation
- Simple text-based input format
- Fast and efficient structure generation
Usage
Open a file in VS Code
Write or paste your folder structure in this format:
project/
src/
components/
Button.js
Header.js
utils/
helpers.js
public/
index.html
style.css
package.json
README.md
Select the text (or leave cursor in file without selection to use all content)
Press Ctrl+Shift+P (or Cmd+Shift+P on Mac)
Run the command: "Create Folder Structure from Text"
The folder structure will be created in your workspace root
- Use 2-space indentation for nested items
- End folder names with
/
- File names should not have trailing
/
- Empty lines are ignored
Example:my-project/
src/
components/
Header.js
Footer.js
styles/
main.css
public/
index.html
package.json
Requirements
- VS Code version 1.105.0 or higher
- A workspace folder must be open
Release Notes
0.0.1
Initial release of Folder Structure Generator
Contributing
If you find any issues or have suggestions, please open an issue on the GitHub repository.
License
MIT License
| |