Folder Structure Creator
A Visual Studio Code extension that allows you to create folder structures by pasting ASCII tree representations.
Features
- Create folder structures from ASCII tree representations
- Support for standard tree characters like ├──, └── and nested structures
- Two convenient ways to use:
- Copy structure to clipboard and use keyboard shortcut
- Use input box to enter structure directly
Usage
Method 1: Clipboard (Recommended)
Copy a folder structure to your clipboard, for example:
wav2lip_project/
├── requirements.txt
├── download_models.py
├── inference.py
├── face_detection/
│ └── detection.py
└── models/
└── wav2lip.py
Press Ctrl+Alt+F (or Cmd+Alt+F on Mac)
The folder structure will be created in your current workspace
- Open the Command Palette (
Ctrl+Shift+P or Cmd+Shift+P )
- Select "Folder Structure: Create from input"
- Paste your folder structure in the input box
- Press Enter to create the structure
Requirements
- Visual Studio Code 1.60.0 or higher
Extension Settings
This extension contributes the following commands:
folderStructureCreator.create : Show information about using the extension
folderStructureCreator.createFromClipboard : Create folder structure from clipboard
folderStructureCreator.createFromInput : Create folder structure from input box
Known Issues
- The input box has limited space - for complex structures, use the clipboard method
Release Notes
1.0.0
Initial release of Folder Structure Creator
| |