I have a general question.
I am trying to read a file named: 1.0.0.txt but this seems not to be possible.
The MessageBox shows emty.
If I trying to read a file ex named: File1.txt it works.
So I wonder why it is not possible to read this file named 1.0.0.txt and if it is possible in any way because I have created a hiarchy of files following numbers.
Thanks !
std::string Line;
ifstream GetLine1("C:\\1.0.0.txt");
while( getline(GetLine1, Line) )
{
}
String^ Line2 = gcnew String(Line.c_str());
MessageBox::Show(Line2);