folder_list
Retrieve and display folder contents within a Unity project using specified path and recursive options for subdirectory listing.
Instructions
List contents of a folder in Unity project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | No | Path of the folder to list (default: Assets) | |
recursive | No | List all subdirectories recursively (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path of the folder to list (default: Assets)",
"type": "string"
},
"recursive": {
"description": "List all subdirectories recursively (default: false)",
"type": "boolean"
}
},
"type": "object"
}