如何使用C#清除文本文件的内容?
最佳答案
File.WriteAllText(path, String.Empty);
或者,
File.Create(path).Close();
关于c# - 使用C#清除文本文件的内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2695444/
如何使用C#清除文本文件的内容?
最佳答案
File.WriteAllText(path, String.Empty);
File.Create(path).Close();
关于c# - 使用C#清除文本文件的内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2695444/