in reply to Most efficient way to build output file?

I don't know about Windows, but I'm fairly sure that *nix systems buffer output for you. You can observe this for yourself by writing a small program that doesn't do much output and monitoring the output file. You'll see that it stays at zero-size for a while, and then will jump to some multiple of the local notion of block size. So, I guess the short answer is "Yes, printing often is fine. The right thing happens behind the scenes".

thor

  • Comment on Re: Most efficient way to build output file?