Skip to content

A 10 MB CSV test file

100% Free No signup Instant download Browser-only 5 languages
Free download(10 MB)

csv-10mb.csv

File info

File Format CSV
File Size 10 MB(10,485,760 bytes)
MIME Type text/csv
MD5 57c7b9bd72f49b3bf9c729ddc722494d
SHA-1 d02a63711c95b2466b0fee8e340d5f22bc5d9e4b
SHA-256 8d968ee9fb74ab60882064e83b4004a89a31a04fb9f10f83df7ce106db907767

Download via command line

curl
curl -O https://devlab.itlibra.com/files/csv/csv-10mb.csv
wget
wget https://devlab.itlibra.com/files/csv/csv-10mb.csv
PowerShell
Invoke-WebRequest -Uri "https://devlab.itlibra.com/files/csv/csv-10mb.csv" -OutFile "csv-10mb.csv"

About this file

A 10 MB test file in CSV format, sized to exactly 10,485,760 bytes. Free to download with no signup, for verifying upload limits and file-handling behaviour.

The MD5, SHA-1 and SHA-256 values listed above are the real digests of this file. Recomputing them after download confirms the transfer was not corrupted, and they double as known-good expected values when testing a hashing library.

What this size means in practice

10 MB is one of the most common "round number" caps chosen for forms and CMS uploads. It is exactly 10,485,760 bytes (10 × 1024 × 1024), which also lets you detect whether an implementation computes MB with 1000 or with 1024.

An implementation using 1000 rejects anything past 10,000,000 bytes, so this file fails there. One using 1024 accepts it as exactly at the limit. To pin down the boundary precisely, combine it with the threshold set (9.9 MB / 10.0 MB / 10.1 MB).

Getting a feel for this size

On a 10 Mbps link the transfer takes roughly 8.4 seconds, and about 839 ms at 100 Mbps. Base64-encoded it grows to roughly 13,653 KB.

For a typical business CSV of about ten columns and roughly 100 bytes per row, this size corresponds to about 104,858 rows — a useful gauge for whether a spreadsheet can open it or a bulk database import finishes in time. It is a rough estimate; actual counts vary with content and column count.

What to check for this format

CSV is plain text and has no magic bytes of its own. You therefore cannot prove a file is CSV by inspecting a signature; validation has to focus instead on character encoding, delimiters, and quoting rules.

  • Whether you process row by row instead of loading every line into memory — the classic cause of out-of-memory failures on large CSVs
  • Whether quoted values containing embedded newlines or commas are parsed correctly
  • Whether encoding detection is correct — CSVs containing Japanese are a frequent source of mojibake

FAQ

Is this file free to use?
Yes — fully free and no signup required. Use it for any commercial or non-commercial test/verification purpose.
What is inside the file?
Dummy data generated for testing — sized to match the listed size exactly.
What are the hash values for?
Verify integrity after download or use them as test data for hashing libraries.