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


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


File.SetLastWriteTimeUtc(String)是内置的File类方法,用于创建新文件,然后将指定的字节数组写入文件,然后关闭文件。如果目标文件已经存在,则将其覆盖。

用法:

public static void WriteAllBytes (string path, byte[] bytes);

参数:此函数接受两个参数,如下所示:



  • path: This is the specified file where the byte array is going to be written.
  • bytes: This is the specified bytes that are going to be written into the file.

异常:

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

下面是说明File.WriteAllBytes(String,Byte [])方法的程序。

程序1:最初,没有创建文件。在代码下面,它自己创建一个文件file.txt并写入一些指定的字节数组,然后最后关闭该文件。

// C# program to illustrate the usage 
// of File.WriteAllBytes() method 
  
// Using System, System.IO 
// and System.Text namespaces 
using System; 
using System.IO; 
using System.Text; 
  
class GFG { 
    static void Main(string[] args) 
    { 
        // Specifing a file name 
        var path = @"file.txt"; 
  
        // Specifing a byte array 
        string text = "GFG is a CS portal."; 
        byte[] data = Encoding.ASCII.GetBytes(text); 
  
        // Calling the WriteAllBytes() function 
        // to write specified byte array to the file 
        File.WriteAllBytes(path, data); 
        Console.WriteLine("The data has been written to the file."); 
    } 
}

输出:

The data has been written to the file.

上面的代码给出了如上所示的输出,并创建了一个文件,其内容如下所示:

file.txt

程序2:最初,创建了一个文件,其内容如下所示:

file.txt

下面的代码用指定的字节数组数据覆盖上面的文件内容。

// C# program to illustrate the usage 
// of File.WriteAllBytes() method 
  
// Using System, System.IO 
// and System.Text namespaces 
using System; 
using System.IO; 
using System.Text; 
  
class GFG { 
    static void Main(string[] args) 
    { 
        // Specifing a file name 
        var path = @"file.txt"; 
  
        // Specifing a byte array data 
        string text = "GeeksforGeeks"; 
        byte[] data = Encoding.ASCII.GetBytes(text); 
  
        // Calling the WriteAllBytes() function 
        // to overwrite the file contents with the 
        // specified byte array data 
        File.WriteAllBytes(path, data); 
        Console.WriteLine("The data has been overwritten to the file."); 
    } 
}

输出:

The data has been overwritten to the file.

运行以上代码后,将显示以上输出,并且文件内容将被覆盖,如下所示:

file.txt




相关用法


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