我没有问如何创建目录,我的意思是例如我会询问用户是否要使用是/否提示在其中创建目录和文本输出。 (到目前为止一切都已完成,并且已创建了一个带有文本文档的目录)
我希望程序在用户说“是”时自动显示该目录。
有没有办法做到这一点?谢谢!
CreateDirectory ("C:\\MYHRA", NULL);
cout<<"\n\nDo you want to create a text document of this result? [Y]es / [N]o"<<endl;
cin>>yorn;
if (yorn=='y' || yorn=='Y')
{
ofstream myfile;
myfile.open ("C:\\MYHRA\\Result.txt");
myfile <<n<<"\n";
myfile.close();
}
if (yorn=='n' || yorn=='N')
{
continue;
}