次の方法で共有


方法: テキスト ファイルから読み込む (C# プログラミング ガイド)

この例では System.IO.File クラスの静的メソッド ReadAllTextReadAllLines を使用して、テキスト ファイルの内容を読み込みます。

StreamReader の使用例については、「方法: テキスト ファイルを一度に 1 行読み込む (Visual C#)」を参照してください。

[!メモ]

この例で使用されているファイルは" "トピック 方法: テキスト ファイルに書き込む (C# プログラミング ガイド)に作成されます。

使用例

class ReadFromFile
{
    static void Main()
    {
        // The files used in this example are created in the topic
        // How to: Write to a Text File. You can change the path and
        // file name to substitute text files of your own.

        // Example #1
        // Read the file as one string.
        string text = System.IO.File.ReadAllText(@"C:\Users\Public\TestFolder\WriteText.txt");

        // Display the file contents to the console. Variable text is a string.
        System.Console.WriteLine("Contents of WriteText.txt = {0}", text);

        // Example #2
        // Read each line of the file into a string array. Each element
        // of the array is one line of the file.
        string[] lines = System.IO.File.ReadAllLines(@"C:\Users\Public\TestFolder\WriteLines2.txt");

        // Display the file contents by using a foreach loop.
        System.Console.WriteLine("Contents of WriteLines2.txt = ");
        foreach (string line in lines)
        {
            // Use a tab to indent each line of the file.
            Console.WriteLine("\t" + line);
        }

        // Keep the console window open in debug mode.
        Console.WriteLine("Press any key to exit.");
        System.Console.ReadKey();
    }
}

コードのコンパイル

コードをコピーして、Cのコンソール アプリケーションに貼り付けます。

方法: テキスト ファイルに書き込む (C# プログラミング ガイド)からテキスト ファイルを使用しない場合は、適切なパスで ReadAllText と ReadAllLines に引数およびコンピューターのファイル名を置き換えます。

信頼性の高いプログラミング

次の条件を満たす場合は、例外が発生する可能性があります。

  • ファイルは指定した場所に存在しないか、ありません。パスとファイル名のスペルを確認します。

セキュリティ

ファイルの内容を決定するファイルの名前に依存しないでください。たとえば、ファイル myFile.cs は、Cのソース ファイルではない可能性があります。

参照

関連項目

System.IO

概念

C# プログラミング ガイド

その他の技術情報

ファイル システムとレジストリ (C# プログラミング ガイド)