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.com 2009-12-16T12:17:34Z http://stackoverflow.com/feeds/question/42286 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/42286/whats-the-best-way-to-read-the-contents-of-a-text-file-to-a-string-in-net 3 What's the best way to read the contents of a text file to a string in .NET? Scott A. Lawrence 2008-09-03T18:45:51Z 2008-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#42290 3 Answer by Brad Wilson for What's the best way to read the contents of a text file to a string in .NET? Brad Wilson 2008-09-03T18:47:45Z 2008-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#42292 4 Answer 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-Georg 2008-09-03T18:48:36Z 2008-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#42293 14 Answer by Jimmy for What's the best way to read the contents of a text file to a string in .NET? Jimmy 2008-09-03T18:51:06Z 2008-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#42322 2 Answer by Bjorn Reppen for What's the best way to read the contents of a text file to a string in .NET? Bjorn Reppen 2008-09-03T19:06:14Z 2008-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>