get_filesystem_info
Retrieve metadata for files or directories in a Vertex AI workspace, including size, type, timestamps, and permissions, without accessing file content.
Instructions
Retrieve detailed metadata about a file or directory within the workspace filesystem. Returns comprehensive information including size (bytes), creation time, last modified time, last accessed time, type (file/directory), and permissions (octal string). This tool is perfect for understanding file characteristics without reading the actual content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path of the file or directory to get info for (relative to the workspace directory). |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"description": "The path of the file or directory to get info for (relative to the workspace directory).",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}