fast_find_large_files
Identify and locate large files within a specified directory based on minimum size and limit results. Optimized for efficient file system analysis on overflow-proof, high-reliability MCP servers.
Instructions
큰 파일들을 찾습니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | 최대 결과 수 | |
min_size | No | 최소 크기 (예: 100MB, 1GB) | 100MB |
path | Yes | 검색할 디렉토리 |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 50,
"description": "최대 결과 수",
"type": "number"
},
"min_size": {
"default": "100MB",
"description": "최소 크기 (예: 100MB, 1GB)",
"type": "string"
},
"path": {
"description": "검색할 디렉토리",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}