manage_folder
Perform folder operations in Obsidian vaults, including creating, renaming, moving, or deleting folders, to streamline organization and management of files.
Instructions
Create, rename, move, or delete a folder in the Obsidian vault
Input Schema
Name | Required | Description | Default |
---|---|---|---|
newPath | No | New path for the folder (required for rename and move operations) | |
operation | Yes | The operation to perform: create, rename, move, or delete | |
path | Yes | Path to the folder within the vault |
Input Schema (JSON Schema)
{
"properties": {
"newPath": {
"description": "New path for the folder (required for rename and move operations)",
"type": "string"
},
"operation": {
"description": "The operation to perform: create, rename, move, or delete",
"enum": [
"create",
"rename",
"move",
"delete"
],
"type": "string"
},
"path": {
"description": "Path to the folder within the vault",
"type": "string"
}
},
"required": [
"operation",
"path"
],
"type": "object"
}