folder_rename
Rename folders within Unity projects using direct input of current path and new name, streamlining asset management and organization.
Instructions
Rename a folder in Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newName | Yes | New name for the folder | |
oldPath | Yes | Current path of the folder |
Input Schema (JSON Schema)
{
"properties": {
"newName": {
"description": "New name for the folder",
"type": "string"
},
"oldPath": {
"description": "Current path of the folder",
"type": "string"
}
},
"required": [
"oldPath",
"newName"
],
"type": "object"
}