當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


C# File.WriteAllText(String, String)用法及代碼示例

File.WriteAllText(String, String) 是一個內置的 File 類方法,用於創建一個新文件,將指定的字符串寫入文件,然後關閉文件。如果目標文件已經存在,它會被覆蓋。

用法:

public static void WriteAllText (string path, string contents);

參數:此函數接受兩個參數,如下所示:

  • path: This is the specified file where specified string are going to be written.
  • contents: This is the specified string to write to the file.

異常:

  • ArgumentException:路徑是一個長度為零的字符串,隻包含空格,或者一個或多個由 InvalidPathChars 定義的無效字符。
  • ArgumentNullException:路徑為空。
  • PathTooLongException:指定的路徑,文件名或兩者都超過了system-defined的最大長度。
  • DirectoryNotFoundException:指定的路徑無效。
  • IOException:打開文件時發生I /O錯誤。
  • UnauthorizedAccessException:路徑指定了一個隻讀文件。或者路徑指定了一個隱藏的文件。 OR 當前平台不支持此操作。或者路徑指定了一個目錄。或者調用者沒有所需的權限。
  • NotSupportedException:路徑格式無效。
  • SecurityException:調用者沒有所需的權限。

下麵是說明 File.WriteAllText(String, String) 方法的程序。



程序1:最初,沒有創建文件。下麵的代碼本身創建一個文件 file.txt 並將指定的字符串數組寫入文件。


// C# program to illustrate the usage
// of File.WriteAllText(String, String) method
  
// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;
  
class GFG {
    public static void Main()
    {
        // Specifying a file
        string path = @"file.txt";
  
        // Creating a string
        string createText = "GeeksforGeeks" + Environment.NewLine;
  
        // Writing the string to the file
        File.WriteAllText(path, createText);
  
        // Reading the contents of the file
        string readText = File.ReadAllText(path);
        Console.WriteLine(readText);
    }
}

輸出:

GeeksforGeeks

運行上麵的代碼後,顯示了上麵的輸出,並創建了一個新文件 file.txt 如下所示 -

file.txt

程序2:最初,創建了一個文件 file.txt,其中的一些內容如下所示-

file.txt

下麵的代碼用指定的字符串覆蓋文件內容。


// C# program to illustrate the usage
// of File.WriteAllText(String, String) method
  
// Using System, System.IO and
// System.Text namespaces
using System;
using System.IO;
using System.Text;
  
class GFG {
    public static void Main()
    {
        // Specifying a file
        string path = @"file.txt";
  
        // Creating a string
        string createText = "GFG is a cs portal." + Environment.NewLine;
  
        // Overwriting the string to the file
        File.WriteAllText(path, createText);
  
        // Reading the contents of the file
        string readText = File.ReadAllText(path);
        Console.WriteLine(readText);
    }
}

輸出:

GFG is a cs portal.

運行上述代碼後,顯示如上輸出,文件file.txt內容如下所示:

file.txt




相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 File.WriteAllText(String, String) Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。