我正在写一个文本文件,每次我写我都想清除文本文件。
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
{
}
我该怎么做呢?我想从DefaultProfile.txt中删除所有以前的内容。
我实际上必须知道从文本文件中删除所有内容的方法或方式(可能只是一个名称)。