当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# File.ReadAllBytes()用法及代码示例


File.ReadAllBytes(String)是一个内置的File类方法,该方法用于打开指定的或创建的二进制文件,然后将文件的内容读取到字节数组中,然后关闭文件。

用法:

public static byte[] ReadAllBytes (string path);

参数:该函数接受如下所示的参数:



  • path: This is the specified file to open for reading.

异常:

  • ArgumentException:路径为长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
  • ArgumentNullException:路径为空。
  • PathTooLongException:指定的路径,文件名或两者都超过了system-defined的最大长度。
  • DirectoryNotFoundException:指定的路径无效。
  • IOException:打开文件时发生I /O错误。
  • UnauthorizedAccessException:当前平台不支持此操作。或路径指定目录。或调用者没有所需的权限。
  • FileNotFoundException:找不到在路径中指定的文件。
  • NotSupportedException:路径格式无效。
  • SecurityException:调用者没有所需的权限。

返回值:返回一个包含文件内容的字节数组。

下面是说明File.ReadAllBytes(String)方法的程序。

程序1:最初,将创建一个文件file.txt,其内容如下所示-

file.txt

// 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() 
    { 
        // Specifing 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); 
        } 
    } 
}

输出:

53

程序2:最初,没有创建文件。下面的代码本身创建带有一些指定内容的文件file.txt。

// 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() 
    { 
        // Specifing 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); 
        } 
    } 
}

输出:

71
70
71
10



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.ReadAllBytes() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。