c# determine the number of lines within a text file - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:16:56Zhttp://stackoverflow.com/feeds/question/119559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/119559/c-determine-the-number-of-lines-within-a-text-file6c# determine the number of lines within a text fileTK2008-09-23T07:25:31Z2008-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#1195729Answer by Greg Beech for c# determine the number of lines within a text fileGreg Beech2008-09-23T07:27:24Z2008-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#1195740Answer by Mitchel Sellers for c# determine the number of lines within a text fileMitchel Sellers2008-09-23T07:27:38Z2008-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#1195793Answer by leppie for c# determine the number of lines within a text fileleppie2008-09-23T07:28:07Z2008-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#1195811Answer by geocoin for c# determine the number of lines within a text filegeocoin2008-09-23T07:28:32Z2008-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#1195831Answer by tenshihan for c# determine the number of lines within a text filetenshihan2008-09-23T07:29:43Z2008-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#1196021Answer by benPearce for c# determine the number of lines within a text filebenPearce2008-09-23T07:33:14Z2008-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#1196380Answer by Sklivvz for c# determine the number of lines within a text fileSklivvz2008-09-23T07:43:35Z2008-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#2495930Answer by vabuk for c# determine the number of lines within a text filevabuk2008-10-30T08:40:44Z2008-10-30T08:40:44Z<p>Thanks... Cool example</p>