Jump to content

Recommended Posts

Posted

boas pessoas

como posso criar um ficheiro txt e que sempre que abra o programa grave o que eu quero  e nao substitui-a o que ja tenha gravado, ou seja se o ficheiro ja existir continuar a gravar.

cumps

Posted
using System;
using System.IO;

namespace Exemplo
{
    class Programa
    {
        static void Main(string[] args)
        {
            // Abre o ficheiro para acrescentar ou cria se não existir
            StreamWriter fich = new StreamWriter("ficheiro.txt",true);

            // Escreve linha no ficheiro
            fich.WriteLine("linha de texto");

            // Fecha o ficheiro
            fich.Close();
        }
    }
}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.