Read text file to the end : StreamWriter « File Directory « Visual C++ .NET






Read text file to the end

 

#include "stdafx.h"
using namespace System;
using namespace System::IO;

void main()
{
    array<String^>^ data = gcnew array<String^> {"This is ", "a test!", "This is only a test." };

    StreamWriter ^sw = gcnew StreamWriter(gcnew FileStream("file.txt",FileMode::Create, FileAccess::Write, FileShare::None));

    for (int i = 0; i < data->Length-1; i++){
        sw->Write(data[i]);
    }
    sw->WriteLine();
    sw->WriteLine(data[2]);
    sw->Close();

    StreamReader ^sr = File::OpenText("file.txt");
    String^ in = sr->ReadLine();
    Console::WriteLine(in);

    Console::WriteLine(sr->ReadToEnd());

    sw->Close();
}

   
  








Related examples in the same category

1.Write to a text file with StreamWriter
2.Read a text file with StreamReader
3.Write line to text file with StreamWriter
4.Create StreamWriter from file name