Открыть существующий файл, добавить одну строку - PullRequest
239 голосов
/ 14 мая 2010

Я хочу открыть текстовый файл, добавить к нему одну строку, а затем закрыть его.

Ответы [ 9 ]

319 голосов
/ 14 мая 2010

Вы можете использовать File.AppendAllText для этого:

File.AppendAllText(@"c:\path\file.txt", "text content" + Environment.NewLine);
114 голосов
/ 14 мая 2010
using (StreamWriter w = File.AppendText("myFile.txt"))
{
  w.WriteLine("hello");
}
77 голосов
/ 30 октября 2013

Выбор один! Но первое очень просто. Последнее может быть использовано для манипулирования файлами:

//Method 1 (I like this)
File.AppendAllLines(
    "FileAppendAllLines.txt", 
    new string[] { "line1", "line2", "line3" });

//Method 2
File.AppendAllText(
    "FileAppendAllText.txt",
    "line1" + Environment.NewLine +
    "line2" + Environment.NewLine +
    "line3" + Environment.NewLine);

//Method 3
using (StreamWriter stream = File.AppendText("FileAppendText.txt"))
{
    stream.WriteLine("line1");
    stream.WriteLine("line2");
    stream.WriteLine("line3");
}

//Method 4
using (StreamWriter stream = new StreamWriter("StreamWriter.txt", true))
{
    stream.WriteLine("line1");
    stream.WriteLine("line2");
    stream.WriteLine("line3");
}

//Method 5
using (StreamWriter stream = new FileInfo("FileInfo.txt").AppendText())
{
    stream.WriteLine("line1");
    stream.WriteLine("line2");
    stream.WriteLine("line3");
}
6 голосов
/ 16 ноября 2015

Или вы можете использовать File.AppendAllLines(string, IEnumerable<string>)

File.AppendAllLines(@"C:\Path\file.txt", new[] { "my text content" });
6 голосов
/ 14 мая 2010

Возможно, вам стоит проверить класс TextWriter .

//Open File
TextWriter tw = new StreamWriter("file.txt");

//Write to file
tw.WriteLine("test info");

//Close File
tw.Close();
2 голосов
/ 25 июня 2017

Технически лучший способ, вероятно, таков:

private static async Task AppendLineToFileAsync([NotNull] string path, string line)
{
    if (string.IsNullOrWhiteSpace(path)) 
        throw new ArgumentOutOfRangeException(nameof(path), path, "Was null or whitepsace.");

    if (!File.Exists(path)) 
        throw new FileNotFoundException("File not found.", nameof(path));

    using (var file = File.Open(path, FileMode.Append, FileAccess.Write))
    using (var writer = new StreamWriter(file))
    {
        await writer.WriteLineAsync(line);
        await writer.FlushAsync();
    }
}
2 голосов
/ 14 мая 2010

File.AppendText сделает это:

using (StreamWriter w = File.AppendText("textFile.txt")) 
{
    w.WriteLine ("-------HURRAY----------");
    w.Flush();
}
0 голосов
/ 08 сентября 2015
//display sample reg form in notepad.txt
using (StreamWriter stream = new FileInfo("D:\\tt.txt").AppendText())//ur file location//.AppendText())
{
   stream.WriteLine("Name :" + textBox1.Text);//display textbox data in notepad
   stream.WriteLine("DOB : " + dateTimePicker1.Text);//display datepicker data in notepad
   stream.WriteLine("DEP:" + comboBox1.SelectedItem.ToString());
   stream.WriteLine("EXM :" + listBox1.SelectedItem.ToString());
}
0 голосов
/ 30 декабря 2014

// Мы можем использовать

public StreamWriter (путь строки, bool append);

при открытии файла

StreamWriter SW = новый StreamWriter (путь, true);

Первый параметр - это строка для хранения полного пути к файлу. Второй параметр - это режим добавления, который в этом случае становится истинным string Path = "C: \ MyFolder \ Notes.txt"

Запись в файл может быть сделана с помощью

SW.Write (строка)

или

SW..WriteLine (строка)

SW.WriteLine («Некоторый текст»);

SW.Flush ();

SW.Close (); * * тысяча тридцать два

Пример кода

private void WriteAndAppend()
{
            string Path = Application.StartupPath + "\\notes.txt";
            FileInfo fi = new FileInfo(Path);
            StreamWriter SW;
            StreamReader SR;
            if (fi.Exists)
            {
                SR = new StreamReader(Path);
                string Line = "";
                while (!SR.EndOfStream) // Till the last line
                {
                    Line = SR.ReadLine();
                }
                SR.Close();
                int x = 0;
                if (Line.Trim().Length <= 0)
                {
                    x = 0;
                }
                else
                {
                    x = Convert.ToInt32(Line.Substring(0, Line.IndexOf('.')));
                }
                x++;
                SW = new StreamWriter(Path, true);
                SW.WriteLine("-----"+string.Format("{0:dd-MMM-yyyy hh:mm:ss tt}", DateTime.Now));
                SW.WriteLine(x.ToString() + "." + textBox1.Text);

            }
            else
            {
                SW = new StreamWriter(Path);
                SW.WriteLine("-----" + string.Format("{0:dd-MMM-yyyy hh:mm:ss tt}", DateTime.Now));
                SW.WriteLine("1." + textBox1.Text);
            }
            SW.Flush();
            SW.Close();
        }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...