fast_batch_file_operations
Perform batch file operations like copy, move, delete, and rename with options for error handling, dry runs, and backups using the fast-filesystem-mcp server.
Instructions
여러 파일에 대한 일괄 작업을 수행합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_backup | No | 변경 전 백업 생성 | |
dry_run | No | 실제 실행 없이 미리보기 | |
operations | Yes | 일괄 작업 목록 | |
stop_on_error | No | 에러 발생시 중단 |
Input Schema (JSON Schema)
{
"properties": {
"create_backup": {
"default": false,
"description": "변경 전 백업 생성",
"type": "boolean"
},
"dry_run": {
"default": false,
"description": "실제 실행 없이 미리보기",
"type": "boolean"
},
"operations": {
"description": "일괄 작업 목록",
"items": {
"properties": {
"destination": {
"description": "대상 경로 (copy, move, rename용)",
"type": "string"
},
"operation": {
"description": "작업 유형",
"enum": [
"copy",
"move",
"delete",
"rename"
],
"type": "string"
},
"overwrite": {
"default": false,
"description": "덮어쓰기 허용",
"type": "boolean"
},
"source": {
"description": "원본 경로",
"type": "string"
}
},
"required": [
"operation",
"source"
],
"type": "object"
},
"type": "array"
},
"stop_on_error": {
"default": true,
"description": "에러 발생시 중단",
"type": "boolean"
}
},
"required": [
"operations"
],
"type": "object"
}