I have a C++ project which I initially compiled with g++. Now, I am trying to make it work in Visual Studio 2010 and the problem is that the regular commands that create an empty output file for writing:
#include <fstream>
using namespace std;
ofstream fout("afile.txt");
fout<<"write someting"<<endl;
fout.close();
will not work in VS2010 (no file is created). Even if the file already exists nothing is written on it.
So, any ideas what is the correct way of opening a file for writing from C++ in VS2010 ?
