create_empty_file
Creates an empty file with specified encoding to prepare for content insertion, supporting UTF-8, CP949, EUC-KR, and ASCII formats for Windows development environments.
Instructions
지정된 인코딩으로 빈 파일을 생성합니다. Agent가 내용을 채울 수 있도록 빈 파일만 생성합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| directory_path | Yes | 파일을 생성할 디렉터리의 절대 경로 | |
| encoding | No | 파일 인코딩 | utf-8-bom |
| file_name | Yes | 생성할 파일명 (예: hello.cpp, test.h) |
Input Schema (JSON Schema)
{
"properties": {
"directory_path": {
"description": "파일을 생성할 디렉터리의 절대 경로",
"type": "string"
},
"encoding": {
"default": "utf-8-bom",
"description": "파일 인코딩",
"enum": [
"utf-8-bom",
"utf-8",
"cp949",
"euc-kr",
"ascii"
],
"type": "string"
},
"file_name": {
"description": "생성할 파일명 (예: hello.cpp, test.h)",
"type": "string"
}
},
"required": [
"file_name",
"directory_path"
],
"type": "object"
}