organize_structure
Create hierarchical directory structures and move files to appropriate locations based on user-defined categories and file patterns for systematic document organization.
Instructions
Create hierarchical directory structure and move files to appropriate locations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categories | Yes | Categories with their associated file patterns/names | |
directory_path | Yes | Path to directory to organize |
Input Schema (JSON Schema)
{
"properties": {
"categories": {
"description": "Categories with their associated file patterns/names",
"type": "object"
},
"directory_path": {
"description": "Path to directory to organize",
"type": "string"
}
},
"required": [
"directory_path",
"categories"
],
"type": "object"
}