Create Folders
scaffold_create_foldersCreate empty folder structures in an existing directory by specifying a target path and relative folder paths. Returns a list of the created folders.
Instructions
Create empty folder structures within an existing directory.
Args:
target_dir (string): Absolute path to the parent directory
folders (array): Array of relative folder paths to create
Returns: A list of created folders.
Example: scaffold_create_folders( target_dir="/home/user/projects/my-app", folders=["src/components/ui", "src/hooks", "tests/unit"] )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folders | Yes | Array of relative folder paths to create | |
| target_dir | Yes | Absolute path to the parent directory |