change_directory
Switch the current working directory to a specified path within the terminal, enabling efficient navigation and management of file system operations.
Instructions
Change current working directory
Args:
path: Directory path to switch to
Returns:
Operation result information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"title": "change_directoryArguments",
"type": "object"
}