- How do I merge files with different line endings?
- Enable 'normalize line endings' to convert all CRLF (Windows) and CR (old Mac) to LF (Unix) during merge. Inconsistent line endings cause issues in version control diffs and text processing tools — normalization is usually desirable.
- Can I merge files of different formats?
- Text files (CSV, JSON, log) merge by concatenation. Binary files (images, archives, split parts) merge by byte concatenation. Structured data files (CSV with headers, JSON arrays) have a special merge mode that handles headers correctly and concatenates records.
- Does the order of files matter when merging?
- For binary part files (split archives), order is critical — merge out of order and the result is corrupt. For log files, sort by first timestamp. For CSV data files, order affects row sequence but not data integrity. The merger preserves upload order by default with drag-to-reorder available.