Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

System.IO - Editor de texto

Bom dia!

Eu insiro o texto no textbox "texto" e quando clico no botão ele não vai para o arquivo, nem persiste (quando eu rodo a aplicação novamente o texto que eu digitei não aparece lá na textbox).

Onde está o erro?

2 respostas

Segue o código:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace CaixaEletronico
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void Form2_Load(object sender, EventArgs e)
        {
            if (File.Exists("texto.txt"))
            {
                Stream entrada = File.Open("texto.txt", FileMode.Create);
                StreamReader leitor = new StreamReader(entrada);
                string linha = leitor.ReadLine();
                while (linha != null)
                {
                    texto.Text += linha;
                    linha = leitor.ReadLine();
                }
                leitor.Close();
                entrada.Close();
            }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Stream saida = File.OpenWrite("texto.txt");
            StreamWriter escritor = new StreamWriter(saida);
            escritor.Write(texto.Text);
            escritor.Close();
            saida.Close();
        }
    }
}
solução!

Achei o erro!

Estava assim:

                Stream entrada = File.Open("texto.txt", FileMode.Create);

Mas deveria estar assim:

                Stream entrada = File.Open("texto.txt", FileMode.Open);