Origin Version: 7
Operating System: XP
Hello,
I would like to create an info file (info.txt). The function WriteString seems convenient, but I can't compile it. I included File.h.
Thanks,
nicolas
void infofile()
{
string str=Project.GetPath();
string info;
info=str + "info.txt";
file ff(info, file::modeCreate | modeWrite);
ff.WriteString("string");
ff.Close();
}