Is there a neat way to read the entire contents of a file into a string
without having to write a read() loop each time? I would have thought
there would be some stream that has a method that lets you read the
entire stream into a string with one line of code, but haven't been able
to find one. Now, this is pretty easy to write myself, but it would be
nicer to use some standard method for such a fundamental operation...
Rune