c# determine the number of lines within a text file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:16:56Z http://stackoverflow.com/feeds/question/119559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file 6 c# determine the number of lines within a text file TK 2008-09-23T07:25:31Z 2008-10-30T08:40:44Z <p>Is there an easy way to programmatically determine the number of lines within a text file? </p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119572#119572 9 Answer by Greg Beech for c# determine the number of lines within a text file Greg Beech 2008-09-23T07:27:24Z 2008-09-23T07:55:23Z <p>If you're not too bothered about efficiency, you can simply write:</p> <pre><code>var lineCount = File.ReadAllLines(@"C:\file.txt").Length; </code></pre> <p>For a more efficient method you could do:</p> <pre><code>var lineCount = 0; using (var reader = File.OpenText(@"C:\file.txt")) { while (reader.ReadLine() != null) { lineCount++; } } </code></pre> <p><strong>Edit: In response to questions about efficiency</strong></p> <p>The reason I said the second was more efficient was regarding memory usage, not necessarily speed. The first one loads the entire contents of the file into an array which means it must allocate at least as much memory as the size of the file. The second merely loops one line at a time so it never has to allocate more than one line's worth of memory at a time. This isn't that important for small files, but for larger files it could be an issue (if you try and find the number of lines in a 4GB file on a 32-bit system, for example, where there simply isn't enough user-mode address space to allocate an array this large).</p> <p>In terms of speed I wouldn't expect there to be a lot in it. It's possible that ReadAllLines has some internal optimisations, but on the other hand it may have to allocate a massive chunk of memory. I'd guess that ReadAllLines might be faster for small files, but significantly slower for large files; though the only way to tell would be to measure it with a Stopwatch or code profiler.</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119574#119574 0 Answer by Mitchel Sellers for c# determine the number of lines within a text file Mitchel Sellers 2008-09-23T07:27:38Z 2008-09-23T07:27:38Z <p>You could quickly read it in, and increment a counter, just use a loop to increment, doing nothing with the text.</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119579#119579 3 Answer by leppie for c# determine the number of lines within a text file leppie 2008-09-23T07:28:07Z 2008-09-23T07:28:07Z <p>The easiest:</p> <pre><code>int lines = File.ReadAllLines("myfile").Length; </code></pre> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119581#119581 1 Answer by geocoin for c# determine the number of lines within a text file geocoin 2008-09-23T07:28:32Z 2008-09-23T07:33:35Z <p>count the carriage returns/line feeds. I believe in unicode they are still 0x000D and 0x000A respectively. that way you can be as efficient or as inefficient as you want, and decide if you have to deal with both characters or not</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119583#119583 1 Answer by tenshihan for c# determine the number of lines within a text file tenshihan 2008-09-23T07:29:43Z 2008-09-23T07:29:43Z <p>If by easy you mean a lines of code that are easy to decipher but per chance inefficient?</p> <p>string[] lines = System.IO.File.RealAllLines($filename); int cnt = lines.Count();</p> <p>That's prolly the quickest way to know how many lines. </p> <p>You could also do (depending on if you are buffering it in)</p> <h1>for large files</h1> <p>while (...reads into buffer){ string[] lines = Regex.Split(buffer,System.Enviorment.NewLine); }</p> <p>There are other numerous ways but one of the above are prolly what you'll go with.</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119602#119602 1 Answer by benPearce for c# determine the number of lines within a text file benPearce 2008-09-23T07:33:14Z 2008-09-23T07:33:14Z <p>This would use less memory, but probably take longer</p> <pre><code>int count = 0; string line; TextReader reader = new StreamReader("file.txt"); while ((line = reader.ReadLine()) != null) { count++; } reader.Close(); </code></pre> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/119638#119638 0 Answer by Sklivvz for c# determine the number of lines within a text file Sklivvz 2008-09-23T07:43:35Z 2008-09-23T07:43:35Z <p>You can launch the "<a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?wc" rel="nofollow">wc</a>.exe" executable (comes with <a href="http://unxutils.sourceforge.net/" rel="nofollow">UnixUtils</a> and does not need installation) run as an external process. It supports different line count methods (like unix vs mac vs windows).</p> http://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file/249593#249593 0 Answer by vabuk for c# determine the number of lines within a text file vabuk 2008-10-30T08:40:44Z 2008-10-30T08:40:44Z <p>Thanks... Cool example</p>