如何清除文件内容?

时间:2011-02-15 04:49:44

标签: c# .net file clear

每次应用程序启动时,我都需要清除特定文件的内容。我该怎么做?

6 个答案:

答案 0 :(得分:112)

您可以使用File.WriteAllText方法。

System.IO.File.WriteAllText(@"Path/foo.bar",string.Empty);

答案 1 :(得分:69)

我这样做是为了清除文件的内容而不创建新文件,因为即使应用程序刚刚更新了其内容,我也不希望文件显示新的创建时间。

FileStream fileStream = File.Open(<path>, FileMode.Open);

/* 
 * Set the length of filestream to 0 and flush it to the physical file.
 *
 * Flushing the stream is important because this ensures that
 * the changes to the stream trickle down to the physical file.
 * 
 */
fileStream.SetLength(0);
fileStream.Close(); // This flushes the content, too.

答案 2 :(得分:10)

每次创建文件时都使用FileMode.Truncate。同时将File.Create放在try catch

答案 3 :(得分:2)

执行此操作的最简单方法可能是通过您的应用程序删除文件并创建一个具有相同名称的新文件...以更简单的方式让您的应用程序用新文件覆盖它。

答案 4 :(得分:1)

尝试使用类似

的内容

File.Create

  

创建或覆盖文件中的文件   指定路径。

答案 5 :(得分:0)

最简单的方法是:

File.WriteAllText(path, string.Empty)

但是,我建议您使用FileStream,因为第一个解决方案可能会抛出UnauthorizedAccessException

using(FileStream fs = File.Open(path,FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
     lock(fs)
     {
          fs.SetLength(0);
     }
}