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


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


File.OpenWrite(String)是一个内置的File类方法,用于打开现有文件或创建一个新文件进行写入。

用法:

public static System.IO.FileStream OpenWrite (string path);

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



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

异常:

  • UnauthorizedAccessException:调用者没有所需的权限。或路径指定了只读文件或目录。
  • ArgumentException:路径为长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
  • ArgumentNullException:路径为空。
  • PathTooLongException:指定的路径,文件名或两者都超过了system-defined的最大长度。
  • DirectoryNotFoundException:指定的路径无效。
  • NotSupportedException:路径格式无效。

返回值:在具有写访问权限的指定路径上返回未共享的FileStream对象。

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

程序1:最初,没有创建文件。下面的代码本身创建了一个文件gfg.txt,向其中写入一些文本并进行打印。

// C# program to illustrate the usage 
// of File.OpenWrite(String) method 
  
// Using System, System.IO and 
// System.Text namespaces 
using System; 
using System.IO; 
using System.Text; 
  
class GFG { 
    public static void Main() 
    { 
        // Creating a file 
        string path = @"gfg.txt"; 
  
        // Opening the file for writing 
        using(FileStream fs = File.OpenWrite(path)) 
        { 
            // Putting below specified contents 
            Byte[] info = new UTF8Encoding(true).GetBytes("GFG is a computer science portal."); 
            fs.Write(info, 0, info.Length); 
        } 
  
        // Opening the file for reading 
        using(FileStream fs = File.OpenRead(path)) 
        { 
            byte[] b = new byte[1024]; 
            UTF8Encoding temp = new UTF8Encoding(true); 
  
            while (fs.Read(b, 0, b.Length) > 0) { 
                // Printing the contents of the file 
                Console.WriteLine(temp.GetString(b)); 
            } 
        } 
    } 
}

输出:

GFG is a computer science portal.

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

gfg.txt

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

file.txt

下面的代码将用其他指定的内容覆盖文件内容,然后将打印最终内容。

// C# program to illustrate the usage 
// of File.OpenWrite(String) method 
  
// Using System, System.IO and 
// System.Text namespaces 
using System; 
using System.IO; 
using System.Text; 
  
class GFG { 
    public static void Main() 
    { 
        // Specifing a file 
        string path = @"file.txt"; 
  
        // Opening the file for writing 
        using(FileStream fs = File.OpenWrite(path)) 
        { 
            // Overwriting the above file with below 
            // specified contents 
            Byte[] info = new UTF8Encoding(true).GetBytes("GFG is a CS portal."); 
            fs.Write(info, 0, info.Length); 
        } 
  
        // Opening the file for reading 
        using(FileStream fs = File.OpenRead(path)) 
        { 
            byte[] b = new byte[1024]; 
            UTF8Encoding temp = new UTF8Encoding(true); 
  
            while (fs.Read(b, 0, b.Length) > 0) { 
                // Printing the final contents of the file 
                Console.WriteLine(temp.GetString(b)); 
            } 
        } 
    } 
}

输出:

GFG is a CS portal.



相关用法


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