我正在使用StreamWriter
在会话更改中编写文件,例如登录和注销。
但是如果在我们写入/关闭文件的时候发生重启,我们会得到一个空文件,并且其中已经有一些时间数据被删除 这是我的代码
public void ToJson(T objectToWrite)
{
InformFileLogger.Instance.Debug(">>> start >>>");
try
{
string json = null;
string directory = Path.GetDirectoryName(this.serializeFilePath);
if (!Directory.Exists(directory))
{
Directory.CreateDirectory(directory);
}
if (File.Exists(this.serializeFilePath))
{
if (new FileInfo(this.serializeFilePath).Length == 0)
{
File.Delete(this.serializeFilePath);
}
}
json = JsonConvert.SerializeObject(objectToWrite);
if (json != null)
{
using (StreamWriter streamWriter = new StreamWriter(this.serializeFilePath))
{
streamWriter.WriteLine(json);
streamWriter.Close();
}
}
}
catch (Exception ex)
{
InformEventLogger.Error(ex.ToString());
InformFileLogger.Instance.Error(InformHelper.ExceptionMessageFormat(ex));
}
InformFileLogger.Instance.Debug("<<< end <<<");
}
如何避免在文件中写入空条目/删除数据?
答案 0 :(得分:0)
这实际上取决于如何触发重启。
除非您的代码触发重新启动,否则您无法确保代码可以在重新启动之前执行任何 - 包括完成StreamWriter功能。