views:

29

answers:

1

In an obscure way, it is a programming question. I concatenated several sets of text files in the range of 1MB and found that in each case the concatenated file size was much larger than the sum of the individual files by a large extent (2x-4x times more, even greater for Windows7).

Why is this?

+2  A: 

IT was probably read in ASCII, and written in Unicode. Open the file in a binary/hex viewer to confirm.

leppie