move_file
Relocate or rename files and directories within your workspace using source and destination paths to streamline file management tasks in VS Code.
Instructions
Move or rename a file or directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | Destination path | |
source | Yes | Source path |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"description": "Destination path",
"type": "string"
},
"source": {
"description": "Source path",
"type": "string"
}
},
"required": [
"source",
"destination"
],
"type": "object"
}