从 Web 链接打开文件时 StreamWriter 停止写入

发布于 2024-08-26 02:02:27 字数 523 浏览 5 评论 0原文

继我上一个问题之后...

以下代码在网络服务器上创建日志文件:

private void LogMessage(Message msg)
{
    using (StreamWriter sw = File.AppendText(_logDirectory + DateTime.Now.ToString("yyyyMMddHH") + ".txt"))
    {
        sw.WriteLine(msg.ToString());
    }
}

日志文件从网站上的管理页面链接到:

foreach (FileInfo file in logDir.GetFiles())
{
    Response.Write("<a href='http:// .... /Logs/" + file.Name + "'>" + file.Name + "</a>");
}

我遇到了一个问题,在有人查看其中一个日志后文件从链接,该日志文件停止被写入。

Following on from my previous question...

The following code creates log files on a web server:

private void LogMessage(Message msg)
{
    using (StreamWriter sw = File.AppendText(_logDirectory + DateTime.Now.ToString("yyyyMMddHH") + ".txt"))
    {
        sw.WriteLine(msg.ToString());
    }
}

The log files are linked to from an admin page on the web site:

foreach (FileInfo file in logDir.GetFiles())
{
    Response.Write("<a href='http:// .... /Logs/" + file.Name + "'>" + file.Name + "</a>");
}

I'm getting the problem that after someone looks at one of the log files from the link, that log file stops being written to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妄司 2024-09-02 02:02:28

除了 try catch 之外,您是否尝试过:

  • 检查 file == null
  • InitializeLifetimeService
  • AutoFlush

In addition to the try catch, did you try to:

  • Check for file == null
  • InitializeLifetimeService
  • AutoFlush
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文