What's the best way to read the contents of a text file to a string in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T12:17:34Zhttp://stackoverflow.com/feeds/question/42286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net3What's the best way to read the contents of a text file to a string in .NET?Scott A. Lawrence2008-09-03T18:45:51Z2008-11-03T19:47:10Z
<p>It seems like there should be something shorter than this:</p>
<pre><code>private string LoadFromFile(string path)
{
try
{
string fileContents;
using(StreamReader rdr = File.OpenText(path))
{
fileContents = rdr.ReadToEnd();
}
return fileContents;
}
catch
{
throw;
}
}
</code></pre>
http://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net/42290#422903Answer by Brad Wilson for What's the best way to read the contents of a text file to a string in .NET?Brad Wilson2008-09-03T18:47:45Z2008-09-03T18:47:45Z<p>File.ReadAllText() maybe?</p>
<p>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.</p>
http://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net/42292#422924Answer by Chris Marasti-Georg for What's the best way to read the contents of a text file to a string in .NET?Chris Marasti-Georg2008-09-03T18:48:36Z2008-09-03T18:48:36Z<pre><code>string text = File.ReadAllText("c:\file1.txt");
File.WriteAllText("c:\file2.txt", text);
</code></pre>
<p>Also check out ReadAllLines/WriteAllLines and ReadAllBytes/WriteAllBytes</p>
http://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net/42293#4229314Answer by Jimmy for What's the best way to read the contents of a text file to a string in .NET?Jimmy2008-09-03T18:51:06Z2008-09-03T18:51:06Z<p>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.</p>
<p>Answer to both questions:</p>
<pre><code>using System.IO;
...
string filename = "C:/example.txt";
string content = File.ReadAllText(filename);
File.WriteAllText(filename, content);
</code></pre>
<p>See also ReadAllLines/WriteAllLines and ReadAllBytes/WriteAllBytes if instead of a string you want a string array or byte array.</p>
http://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net/42322#423222Answer by Bjorn Reppen for What's the best way to read the contents of a text file to a string in .NET?Bjorn Reppen2008-09-03T19:06:14Z2008-09-03T19:06:14Z<p>There's no point in that exception handler. It does nothing. This is just a shorterned version of your code, it's fine:</p>
<pre><code> private string LoadFromFile(string path)
{
using(StreamReader rdr = File.OpenText(path))
return rdr.ReadToEnd();
}
</code></pre>