Click here to Skip to main content
15,900,254 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How would I go about finding how many lines are in a certain text file?

E.g.

If Text file looked like this:
__________
Example
File
__________
Then I would want it to return 2.
Posted
Updated 14-Dec-09 17:25pm
v2

You can us File.ReadAllLines("file path").Length. This will give you the number of lines in the file.
 
Share this answer
 
Load the file into a string and split as follows -
string[] array = file.Split(new char[]{'\n'} );

The count of array would give you the number of strings.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900