fs_move_file
Move or rename files and directories by specifying source and destination paths to organize your development workspace.
Instructions
Move or rename a file or directory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source | Yes | Source path | |
| destination | Yes | Destination path |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"description": "Destination path",
"type": "string"
},
"source": {
"description": "Source path",
"type": "string"
}
},
"required": [
"source",
"destination"
],
"type": "object"
}