Remove all previous text before writing

2019-04-21 07:05发布

I am writing a text file and each time i write i want to clear the text file.

try
{
    string fileName = "Profile//" + comboboxSelectProfile.SelectedItem.ToString() + ".txt";
    using (StreamWriter sw = new StreamWriter(("Default//DefaultProfile.txt").ToString(), true))
    {
        sw.WriteLine(fileName);
        MessageBox.Show("Default is set!");
    }
    DefaultFileName = "Default//DefaultProfile.txt";
}
catch 
{ 
}

How do I do this? I want to remove all previous content from DefaultProfile.txt.

I actually have to know the method or way (just a name could be) to remove all content from the text file.

6条回答
何必那么认真
2楼-- · 2019-04-21 07:32

System.IO.File.Delete, or one of the System.IO.FileStream constructor overloads specifying FileMode.Create

查看更多
我欲成王,谁敢阻挡
3楼-- · 2019-04-21 07:32

Simply change the second parameter from true to false in the contructor of StreamWriter.

using (StreamWriter sw = new StreamWriter(("Default//DefaultProfile.txt").ToString(), **false**))

See StreamWriter Contructor

查看更多
叛逆
4楼-- · 2019-04-21 07:33

The most straightforward and efficient technique is to use the StreamWriter constructor's boolean parameter. When it's set to false it overwrites the file with the current operation. For instance, I had to save output of a mathematical operation to a text file. Each time I wanted ONLY the current answer in the text file. So, on the first StreamWriter operation, I set the boolean value to false and the subsequent calls had the bool val set to true. The result is that for each new operation, the previous answer is overwritten and only the new answer is displayed.

        int div = num1 / denominator;
        int mod = num1 % denominator;
        Console.Write(div);
        using (StreamWriter writer = new StreamWriter(FILE_NAME, false ))
        {
            writer.Write(div);
        }
        Console.Write(".");
        using (StreamWriter writer = new StreamWriter(FILE_NAME, true))
        {
            writer.Write(".");
        }       
查看更多
再贱就再见
5楼-- · 2019-04-21 07:36

You can use FileMode.Truncate. Code will look like

FileStream fs = new 
FileStream(filePath, FileMode.Truncate, FileAccess.Write )
{  
  fs.Close();
}
查看更多
Deceive 欺骗
6楼-- · 2019-04-21 07:42

You can look at the Truncate method

FileInfo fi = new FileInfo(@"Default\DefaultProfile.txt");
using(TextWriter txtWriter = new StreamWriter(fi.Open(FileMode.Truncate)))
{
    txtWriter.Write("Write your line or content here");
}
查看更多
一纸荒年 Trace。
7楼-- · 2019-04-21 07:49

You could just write an empty string to the existing file:

File.WriteAllText(@"Default\DefaultProfile.txt", string.Empty);

Or change the second parameter in the StreamWriter constructor to false to replace the file contents instead of appending to the file.

查看更多
登录 后发表回答