Files
SnapOtter/apps/docs/ja/tools/files/split-csv.md
T
SnapOtterandGitHub 4963ab3bbd feat(docs-i18n): translate all documentation into 20 languages
All 181 docs markdown files translated into 20 languages (apps/docs/<locale>/**). Companion to the i18n code PR; admin-merged because the file count exceeds GitHub's per-PR CI trigger limit. Validated by pnpm i18n:check (all surfaces, 0 stale/missing) and a clean all-locale docs build.
2026-07-11 13:52:47 +08:00

1.9 KiB

description, i18n_source_hash, i18n_provenance, i18n_output_hash
description i18n_source_hash i18n_provenance i18n_output_hash
CSV を行数で分割して小さなファイルにします。 a35dce4a99a3 human 097ab6d5414b

Split CSV

大きな CSV または TSV ファイルを行数で小さなファイルに分割します。分割されたパートを含む ZIP アーカイブを返します。

API Endpoint

POST /api/v1/tools/files/split-csv

CSV ファイルと JSON の settings フィールドを含むマルチパートフォームデータを受け付けます。

Parameters

Parameter Type Required Default Description
rowsPerFile integer No 1000 出力ファイルごとのデータ行数 (1 ~ 1,000,000)
keepHeader boolean No true 各出力ファイルにヘッダー行を繰り返すかどうか

Example Request

curl -X POST http://localhost:1349/api/v1/tools/files/split-csv \
  -H "Authorization: Bearer si_your-api-key" \
  -F "file=@large-dataset.csv" \
  -F 'settings={"rowsPerFile": 500, "keepHeader": true}'

Example Response

{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "downloadUrl": "/api/v1/download/a1b2c3d4-e5f6-7890-abcd-ef1234567890/large-dataset_parts.zip",
  "originalSize": 1048576,
  "processedSize": 1050000
}

Notes

  • 出力は常に、分割された CSV パートを含む ZIP アーカイブで、連番で命名されます (例: part-1.csvpart-2.csv)。
  • keepHeadertrue の場合、各パートに元のヘッダー行が含まれるため、各ファイルを個別に使用できます。
  • 入力として CSV と TSV の両方のファイルを受け付けます。
  • 行数はデータ行のみを指します。ヘッダー行はカウントされません。