list_directory
Retrieve and display a list of contents from a specified directory, ensuring access is limited to authorized and secure paths only.
Instructions
指定されたディレクトリの内容を一覧表示します(許可されたディレクトリのみ)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dirpath | Yes | 一覧表示するディレクトリのパス |
Input Schema (JSON Schema)
{
"properties": {
"dirpath": {
"description": "一覧表示するディレクトリのパス",
"type": "string"
}
},
"required": [
"dirpath"
],
"type": "object"
}