File.OpenText(String) es un método de clase de archivo incorporado que se utiliza para abrir un archivo de texto codificado en UTF-8 existente para su lectura.
Sintaxis:
public static System.IO.StreamReader OpenText (string path);
Parámetro: Esta función acepta un parámetro que se ilustra a continuación:
- ruta: este es el archivo de texto especificado que se abrirá para su lectura.
Excepciones:
- UnauthorizedAccessException: la persona que llama no tiene el permiso necesario.
- ArgumentException: la ruta es una string de longitud cero, contiene solo espacios en blanco o uno o más caracteres no válidos según lo definido por InvalidPathChars.
- ArgumentNullException: la ruta es nula.
- PathTooLongException: la ruta especificada , el nombre de archivo o ambos superan la longitud máxima definida por el sistema.
- DirectoryNotFoundException: la ruta especificada no es válida.
- FileNotFoundException: no se encontró el archivo especificado en la ruta .
- NotSupportedException: la ruta tiene un formato no válido.
Valor devuelto: Devuelve un StreamReader en la ruta especificada.
A continuación se muestran los programas para ilustrar el método File.OpenText(String).
Programa 1: antes de ejecutar el siguiente código, se crea un archivo de texto file.txt con algunos contenidos que se muestran a continuación:
Debajo del código, abra el archivo de texto file.txt para leer.
C#
// 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); } } } }
Ejecutando:
GeeksforGeeks
Programa 2: Inicialmente, se crea un archivo file.txt con algunos contenidos que se muestran a continuación:
El siguiente código sobrescribirá el contenido del archivo con otros contenidos especificados y luego se imprimirá el contenido final.
C#
// 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); } } } }
Ejecutando:
GFG is a CS portal.
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA