export_to_csv
Convert Excel worksheet data to CSV format using file paths and sheet names for accurate and structured data export.
Instructions
ワークシートをCSVファイルにエクスポートします
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| csvPath | Yes | CSVファイルの出力パス | |
| filePath | Yes | Excelファイルのパス(既存ファイル) | |
| sheetName | Yes | ワークシート名(既存シート) | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "csvPath": {
      "description": "CSVファイルの出力パス",
      "type": "string"
    },
    "filePath": {
      "description": "Excelファイルのパス(既存ファイル)",
      "type": "string"
    },
    "sheetName": {
      "description": "ワークシート名(既存シート)",
      "type": "string"
    }
  },
  "required": [
    "filePath",
    "sheetName",
    "csvPath"
  ],
  "type": "object"
}