簡単な C++ で、ユーザーにパスを入力してこの同じファイルを操作するように求めることは可能ですか? これについて詳しく知るためのウェブサイトを知っている人はいますか?今回の Google はそれほど簡単ではありませんでした。
#include <iostream>
#include <fstream>
int main()
{
using namespace std;
char * b = 0;
cin >> b;
cout << b;
const char * c = b;
ofstream myfile;
myfile.open (c);
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}