這真的很奇怪。對於ifstream和ostream,絕對路徑不起作用。它適用於當我使用這樣的相對路徑:fstream絕對路徑不起作用
ofstream out;
out.open("file2.txt");
string river = "i love cheese";
if(!out){
cout << "error"; // have breakpoint set here
} else {
out << river; // have breakpoint set here (stops here when debugging)
}
out.close();
但是,當我使用絕對路徑,它不。我很清楚需要使用「\」作爲斜槓,而我嘗試使用「/」來代替,而且它仍然不起作用。
ofstream out;
out.open("C:\\file2.txt"); // also tried "C:/file2.txt"
string river = "i love cheese";
if(!out){
cout << "error"; // have breakpoint set here (stops here when debugging)
} else {
out << river; // have breakpoint set here
}
out.close();
我真的需要它絕對路徑的工作,因爲這是提供的功能和輸入和輸出文件不會始終在同一文件夾中的二進制文件。
您是否有權限在'C:'中編寫? – GManNickG 2010-10-17 19:37:13
調用'perror(「open failed」);''out.open'評估爲false。這會告訴你它不起作用的原因。 – 2010-10-17 19:40:02
Perror是否將錯誤輸出到控制檯?我正在製作一個沒有控制檯的Windows應用程序。 : -/ – alex 2010-10-17 19:42:29