- How do I reassemble split files?
- Use the file-merger tool to concatenate the parts in order. On Linux/Mac, 'cat file.001 file.002 file.003 > file_complete' works for binary and text parts. Verify the reassembled file hash matches the original if you saved it.
- Should I split by size or by line count?
- Split by size for binary files and when downstream tools have file size limits. Split by line count for text/CSV when you need each chunk to have exactly N rows (e.g., database batch inserts, API rate limits per call). Byte splits may split mid-line in CSV files.
- What happens to the header row when splitting CSV files?
- The tool's CSV mode automatically copies the header row to the first row of every chunk — so each split file is a valid, independently usable CSV. Plain text mode does not add headers; each chunk starts with the next line after where the previous chunk ended.