File.ReadAllBytes(String) es un método de clase de archivo incorporado que se usa para abrir un archivo binario específico o creado y luego lee el contenido del archivo en una array de bytes y luego cierra el archivo.
Sintaxis:
public static byte[] ReadAllBytes (string path);
Parámetro: Esta función acepta un parámetro que se ilustra a continuación:
- ruta: Este es el archivo especificado para abrir para lectura.
Excepciones:
- 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.
- IOException: se produjo un error de E/S al abrir el archivo.
- UnauthorizedAccessException: esta operación no se admite en la plataforma actual. O la ruta especifica un directorio. O la persona que llama no tiene el permiso requerido.
- FileNotFoundException: no se encontró el archivo especificado en la ruta .
- NotSupportedException: la ruta tiene un formato no válido.
- SecurityException: la persona que llama no tiene el permiso necesario.
Valor devuelto: Devuelve una array de bytes que contiene el contenido del archivo.
A continuación se muestran los programas para ilustrar el método File.ReadAllBytes(String).
Programa 1: Inicialmente, se crea un archivo file.txt con algunos contenidos que se muestran a continuación:
C#
// C# program to illustrate the usage // of File.ReadAllBytes(String) method // Using System and System.IO namespaces using System; using System.IO; class GFG { public static void Main() { // Specifying a file string path = @"file.txt"; // Calling the ReadAllBytes() function byte[] readText = File.ReadAllBytes(path); foreach(byte s in readText) { // Printing the binary array value of // the file contents Console.WriteLine(s); } } }
Producción:
53
Programa 2: Inicialmente, no se creó ningún archivo. A continuación, el código crea un archivo file.txt con algunos contenidos específicos.
C#
// C# program to illustrate the usage // of File.ReadAllBytes(String) method // Using System and System.IO namespaces using System; using System.IO; class GFG { public static void Main() { // Specifying a file string path = @"file.txt"; // Adding below contents to the file string[] createText = { "GFG" }; File.WriteAllLines(path, createText); // Calling the ReadAllBytes() function byte[] readText = File.ReadAllBytes(path); foreach(byte s in readText) { // Printing the binary array value of // the file contents Console.WriteLine(s); } } }
Producción:
71 70 71 10
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