list_supported_files
Scan a folder and list PDF, DOCX, PPTX, SVG, and PNG files with their paths and sizes to enable subsequent file content extraction.
Instructions
폴더 안에서 pdf/docx/pptx/svg/png 파일만 골라 경로 목록으로 돌려준다.
각 항목의 absolute_path를 read_pdf/read_docx/read_pptx/read_svg/read_image에
그대로 넘기면 됩니다.
Args: folder_path: 분석할 폴더 경로. max_depth: 탐색 최대 깊이 (기본 5). max_entries: 탐색할 최대 항목 수 (기본 2000).
Returns:
SupportedFilesResponse: files[]에 relative_path/absolute_path/extension/bytes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_depth | No | 탐색할 최대 깊이 | |
| folder_path | Yes | 분석할 폴더의 절대/상대 경로 | |
| max_entries | No | 탐색할 최대 파일+폴더 수 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root | Yes | ||
| count | Yes | ||
| files | Yes | ||
| status | Yes | 이 호출의 결과 상태 | |
| truncated | Yes | ||
| next_actions | No | 이어서 호출하면 좋은 도구 목록 |