File.ReadLines(String) is an inbuilt File class method that is used to read the lines of a file.
Syntax:
public static System.Collections.Generic.IEnumerable ReadLines (string path);
Parameter: This function accepts a parameter which is illustrated below:
- path: This is the specified file for reading.
Exceptions:
- ArgumentException: The path is a zero-length string, contains only white space, or one or more invalid characters defined by the GetInvalidPathChars() method.
- ArgumentNullException: The path is null.
- DirectoryNotFoundException: The path is invalid.
- FileNotFoundException: The file specified by the path was not found.
- IOException: An I/O error occurred while opening the file.
- PathTooLongException: The path exceeds the system-defined maximum length.
- SecurityException: The caller does not have the required permission.
- UnauthorizedAccessException: The path specifies a file that is read-only. OR this operation is not supported on the current platform. OR the path is a directory. OR the caller does not have the required permission.
Return Value: Returns all the lines of the specified file.
Below are the programs to illustrate the File.ReadLines(String) method.
Program 1: Initially, a file file.txt is created with some contents shown below-

using System;
using System.IO;
public class GFG {
public static void Main(String[] argv)
{
foreach(string line in File.ReadLines(@"file.txt"))
{
Console.WriteLine(line);
}
}
}
|
Output:
GFG
gfg
Geeks
GeeksforGeeks
geeksforgeeks
Program 2: Initially, a file file.txt is created with some contents shown below-

Below code filter some contents from the file and prints them back.
using System;
using System.IO;
public class GFG {
public static void Main(String[] argv)
{
foreach(string line in File.ReadLines(@"file.txt"))
{
if (line.Contains("GFG")) {
Console.WriteLine(line);
}
}
}
}
|
Output:
GFG
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!