blender_create_directory
Create directories within Blender projects to organize assets, establish file structures, and manage workflow folders. Supports automatic parent directory creation for efficient project setup.
Instructions
Create a new directory within the Blender project structure.
Useful for organizing assets, creating project folders, and establishing file system structure.
Args:
directory_path (string): Directory path to create (relative to project)
parent_directories (boolean, default true): Create parent directories if needed
Returns: Directory creation confirmation and path information
Examples:
Asset folder: directory_path="assets/models"
Textures: directory_path="assets/textures"
Project structure: directory_path="scenes/environment"
Use when: Setting up project structure, organizing assets, creating workflow folders Don't use when: Creating files (use save_file instead)
Performance: Instant operation, negligible performance impact
Security: Only creates directories within project boundary
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| directory_path | Yes | Directory path to create | |
| parent_directories | No | Create parent directories if needed |