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


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

File.ReadAllText(String)是一個內置的File類方法,該方法用於打開文本文件,然後讀取文件中的所有文本,然後關閉文件。

用法:

public static string ReadAllText (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.ReadAllText(String)方法的程序。

程序1:最初,將創建一個文件file.txt,其內容如下所示-

file.txt

// C# program to illustrate the usage 
// of File.ReadAllText(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"; 
  
        // Calling the ReadAllText() function 
        string readText = File.ReadAllText(path); 
  
        // Printing the file contents 
        Console.WriteLine(readText); 
    } 
}

輸出:

GFG
gfg
Geeks
GeeksforGeeks
geeksforgeeks

程序2:最初,沒有創建文件。下麵的代碼本身創建帶有一些指定內容的文件file.txt。

// C# program to illustrate the usage 
// of File.ReadAllText(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"; 
  
        // Adding below contents to the file 
        string[] createText = { "GFG", "is", "a", "CS", "portal" }; 
        File.WriteAllLines(path, createText); 
  
        // Calling the ReadAllText() function 
        string readText = File.ReadAllText(path); 
  
        // Printing the file contents 
        Console.WriteLine(readText); 
    } 
}

輸出:

GFG
is
a
CS
portal



相關用法


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