create_directory
Establish or verify directory structures in your Vertex AI workspace. Easily create nested directories with a single operation, ensuring project setup is efficient and error-free.
Instructions
Create a new directory or ensure a directory exists in the workspace filesystem. Can create multiple nested directories in one operation (like mkdir -p). If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path of the directory to create (relative to the workspace directory). Can include nested paths. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The path of the directory to create (relative to the workspace directory). Can include nested paths.",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}