save_as
Saves the current HWPX document to a specified file path, allowing users to create copies or backups with different names while maintaining the original document structure.
Instructions
현재 문서를 다른 이름으로 저장합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | ||
path | Yes | 저장할 파일 경로 |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"default": false,
"type": "boolean"
},
"path": {
"description": "저장할 파일 경로",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}