Vorrei aggiungere una nuova riga con testo al mio file date.txt, ma invece di aggiungerlo al file date.txt esistente, l'app sta creando un nuovo file date.txt.
TextWriter tw = new StreamWriter("date.txt");
// write a line of text to the file
tw.WriteLine(DateTime.Now);
// close the stream
tw.Close();
Vorrei aprire il file txt, aggiungere del testo, chiuderlo e successivamente dopo aver fatto clic su qualcosa: apri date.txt, aggiungi testo e richiudilo.
Quindi posso ottenere:
Pulsante premuto: txt aperto -> aggiunta ora corrente, quindi chiusura. È stato premuto un altro pulsante, txt aperto -> ha aggiunto il testo "OK" o "NON OK" nella stessa riga, quindi chiuderlo di nuovo.
Quindi il mio file txt sarà simile al seguente:
2011-11-24 10:00:00 OK
2011-11-25 11:00:00 NOT OK
Come posso fare questo? Grazie!
new StreamWriter("date.txt", append:true)
rendere l'intenzione un po 'più chiara.