Hi

I have a problem, my program at start creates a txt file, later he is writting something in to this txt file but he is not adding text but overwritting previous line... With this i have all time only 1 line in my txt file, Do u know any function wich ll add text to he next linet?

Qt Code:
  1. QFile file("out.txt");
  2. if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
  3. return;
  4.  
  5. QTextStream out(&file);
  6. out << temp[0];
To copy to clipboard, switch view to plain text mode 
(it is from example)

Best Regards