remove_multiple_directory
Delete multiple directories at once by specifying their paths. Simplify file management for Obsidian vaults stored in iCloud Drive, enhancing organization and efficiency.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}