fast_get_file_info
Retrieve detailed information about files or directories by specifying their path, ensuring accurate data for efficient filesystem management.
Instructions
파일/디렉토리 상세 정보를 조회합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | 조회할 경로 |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "조회할 경로",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}