create-directory
Create new directories on an FTP server by specifying the remote path, enabling organized file storage and management through direct interaction.
Instructions
Create a new directory on the FTP server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
remotePath | Yes | Path of the directory to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"remotePath": {
"description": "Path of the directory to create",
"type": "string"
}
},
"required": [
"remotePath"
],
"type": "object"
}