0
writeToFile関数が呼び出されたときにファイルに文字列を含む新しい行を書きたいと思います。前の行またはtxt全体を消去せずに可能ですか?前の行がオフストリームでクリアされる
void writeToFile(string str) {
ofstream fileToWrite;
fileToWrite.open("C:/Users/Lucas/Documents/apps/resultado.txt");
if(fileToWrite.good()) {
//write the new line without clearing the txt
//fileToWrite << str won't work for this reason
}
fileToWrite.close();
}