MANIPULACIÓN DE TEXTO
Adjunto el código con el cual es posible crear un archivo de texto, leerlo, y agregar texto nuevo // para crear el archivo void GenerarTXT() { string rutaCompleta = @" D:\mi archivo.txt"; string texto = "HOLA MUNDO "; using (StreamWriter mylogs = File.AppendText(rutaCompleta)) { DateTime dateTime = new DateTime(); dateTime = DateTime.Now; string strDate = Convert.ToDateTime(dateTime).ToString("yyMMdd"); mylogs.WriteLine(texto + strDate); mylogs.Close(); } } // para escribir en el archivo void AdicionarInfoAlTxt() { string rutaCompleta = @" D:\mi archivo.txt"; string texto = "HOLA DE NUEVO"; using (StreamWriter file = new StreamWriter(rutaCompleta, true)) { file.WriteLine(texto); //se agrega informa...