Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在ログオンしているユーザーを見つけて、そのユーザーのデスクトップにテキストファイルを作成するにはどうすればよいですか?私は何時間も研究を続けており、別のコードを試していますが、それでもこれを行うことはできません。
ありがとう!ドリュー
C++ では、文字列を連結する方法ではありません。試す:
myfile.open (string(strPath) + "\\text.txt");
C++ では、文字列を並べて記述するだけでは文字列を連結できません。方法の 1 つは、それらを strcat するか、変換する慣用的な C++ アプローチを使用してから、それらを連結するstd::stringために使用することです。+
std::string
+