我有以下功能:
static public void logEntry( string expression, string result )
{
string content = expression + "=" + result + "\n";
if (!logFileExists()) File.Create( logFileName );
StreamWriter sw = new StreamWriter( logFileName );
sw.Write( content );
sw.Close();
}
...在这三个电话之后:
logEntry( "3/2", "1.5");
logEntry( "8/2", "4");
logEntry( "10/2", "5");
我的文件如下:
10/2=5
而不是:
3/2=1.5
8/2=4
10/2=5
我该怎么办?
答案 0 :(得分:5)
如果文件存在,则使用附加的StreamWriter构造函数重载
using(StreamWriter sw = new StreamWriter( logFileName, true ))
{
sw.Write( content );
}
此外,如果文件不存在,则此构造函数会创建一个新文件,因此不需要调用File.Create。