Open In App

File.OpenText() Method in C# with Examples

File.OpenText(String) is an inbuilt File class method which is used to open an existing UTF-8 encoded text file for reading.
Syntax:  

public static System.IO.StreamReader OpenText (string path);

Parameter: This function accepts a parameter which is illustrated below:  



  • path: This is the specified text file which is going to be opened for reading.

Exceptions: 

Return Value: Returns a StreamReader on the specified path.
Below are the programs to illustrate the File.OpenText(String) method.
Program 1: Before running the below code, a text file file.txt is created with some contents shown below-



Below code open the text file file.txt for reading.




// C# program to illustrate the usage
// of File.OpenText(String) method
 
// Using System and System.IO
// namespaces
using System;
using System.IO;
 
class Test {
    public static void Main()
    {
        // Specifying a text file
        string path = @"file.txt";
 
        // Opening the file for reading
        using(StreamReader sr = File.OpenText(path))
        {
            string s = "";
            while ((s = sr.ReadLine()) != null) {
                // printing the file contents
                Console.WriteLine(s);
            }
        }
    }
}

Executing:  

GeeksforGeeks

Program 2: Initially, a file file.txt is created with some contents shown below-

This below code will overwrite the file contents with other specified contents then final contents will be printed.




// C# program to illustrate the usage
// of File.OpenText(String) method
 
// Using System and System.IO
// namespaces
using System;
using System.IO;
 
class Test {
    public static void Main()
    {
        // Specifying a text file
        string path = @"file.txt";
 
        // Checking the existence of file
        if (File.Exists(path)) {
            using(StreamWriter sw = File.CreateText(path))
            {
                // Overwriting the file with below
                // specified contents
                sw.WriteLine("GFG is a CS portal.");
            }
        }
 
        // Opening the file for reading
        using(StreamReader sr = File.OpenText(path))
        {
            string s = "";
            while ((s = sr.ReadLine()) != null) {
                // printing the overwritten content
                Console.WriteLine(s);
            }
        }
    }
}

Executing: 

GFG is a CS portal.

Article Tags :
C#