create_subdirectory
Organize downloaded markdown files by creating a new subdirectory in the root folder. Specify the directory name to efficiently structure and manage stored webpage content.
Instructions
Create a new subdirectory in the root download folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the subdirectory to create |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the subdirectory to create",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}