up vote 3 down vote favorite
1
share [g+] share [fb]

It seems like there should be something shorter than this:

private string LoadFromFile(string path)
{
   try
   {
       string fileContents;
       using(StreamReader rdr = File.OpenText(path))
       {
            fileContents = rdr.ReadToEnd();
       }

       return fileContents;
   }
   catch
   {
       throw;
   }
}
link|improve this question

feedback

4 Answers

up vote 17 down vote accepted

First of all, the title asks for "how to write the contents of strnig to a text file" but your code example is for "how to read the contents of a text file to a string.

Answer to both questions:

using System.IO;
...
string filename = "C:/example.txt";
string content = File.ReadAllText(filename);
File.WriteAllText(filename, content);

See also ReadAllLines/WriteAllLines and ReadAllBytes/WriteAllBytes if instead of a string you want a string array or byte array.

link|improve this answer
Be careful with ReadAllText or ReadAllLines on big files, especially if this code is running on the GUI thread. – RoadWarrior Nov 8 '08 at 4:29
feedback
string text = File.ReadAllText("c:\file1.txt");
File.WriteAllText("c:\file2.txt", text);

Also check out ReadAllLines/WriteAllLines and ReadAllBytes/WriteAllBytes

link|improve this answer
feedback

File.ReadAllText() maybe?

ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.en/fxref_mscorlib/html/4803f846-3d8a-de8a-18eb-32cfcd038f76.htm if you have VS2008's help installed.

link|improve this answer
feedback

There's no point in that exception handler. It does nothing. This is just a shorterned version of your code, it's fine:

 private string LoadFromFile(string path)
 {
    using(StreamReader rdr = File.OpenText(path))
      return rdr.ReadToEnd();
 }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.