folder_delete
Remove a specified folder from a Unity project, including all its contents recursively, using the MCP Server for Unity to manage project assets effectively.
Instructions
Delete a folder from Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path of the folder to delete | |
recursive | No | Delete all contents recursively (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path of the folder to delete",
"type": "string"
},
"recursive": {
"description": "Delete all contents recursively (default: true)",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}