csv_extract
Extract a specific field value from a CSV record. Retrieve large or truncated data, or write binary output (e.g., base64 images) to a file.
Instructions
Extract a specific field value from a CSV record. Use for retrieving large/truncated field data. Can write to file for binary data (e.g., base64 images).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Absolute path to the CSV file | |
| line | No | Line number (1-indexed data row, default: 1) | |
| field | Yes | Field name to extract | |
| decode | No | Decode base64 data before output (default: none) | |
| outputFile | No | Write extracted data to this file path instead of returning |