delete-directory
Remove a directory from an FTP server by specifying its remote path using this tool designed for managing FTP server content.
Instructions
Delete a directory from the FTP server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
remotePath | Yes | Path of the directory to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"remotePath": {
"description": "Path of the directory to delete",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}