2

所以基本上我编写了一个 Windows 服务,它扫描任何给定目录中的 zip 文件,然后将其上传到 FTP 服务器。我添加了一个跟踪方法,假设写入一个 txt 文件并记录所有内容。当我将服务发布到 Windows 中时出现问题我在事件查看器中收到一条错误消息(我使用 EventLog 类添加了一个 LogEvent),该消息返回

System.IO.IOException:该进程无法访问文件“C:\Windows\system32\traceLog.txt”,因为它正被另一个进程使用。

进行跟踪的代码如下

private void EscribirTrace(string mensaje)
    {
        if (Tracing)
        {
           try
            {
              using (FileStream archivo2 = new FileStream(string.Format("{0}\\traceLog.txt", Environment.CurrentDirectory), FileMode.Append, FileAccess.Write, FileShare.ReadWrite))
                {
                    mensaje = string.Format("{0} - {1} \r\n", DateTime.Now, mensaje);

                    StreamWriter writer = new StreamWriter(archivo2);
                    writer.WriteLine(mensaje);
                    writer.Flush();
                    writer.Dispose();
                }
            }
            catch (Exception ex)
            {
                LogEvent("Error en escribir tracing", ex);
            }
        }

    }

任何想法,将不胜感激

编辑所以经过一些研究,我认为 system32 不是文件的最佳位置。我的意图是在安装了服务的路径上拥有该日志文件。经过一番研究,我更换了

Enviroment.CurrentDirectory

为了

Path.GetFullPath(System.Reflection.Assembly.GetExecutingAssembly().Location).Replace(
                Path.GetFileName(System.Reflection.Assembly.GetExecutingAssembly().Location)

形成一个字符串。

其余的工作得很好。

感谢您的回复 !

4

3 回答 3

0

这是因为您的 using 语句尚未发布文件。您将其在蒸汽中打开,因此在关闭流之前您无法写入它。

如果您只想将文本写入文件,只需使用:

File.WriteAllText(FILEPATH, TEXTDATA);

该调用将打开文件,写入文件,然后关闭它。

于 2012-12-13T18:57:47.760 回答
0

如果它抛出 using ...确保文件上的所有其他流都正确关闭...

如果它抛出 streamwriter 构造函数

使用构造函数中的新文件流将 using 更改为流编写器

于 2012-12-13T18:59:35.833 回答
0

/Windows/system32 需要管理员权限。您的应用程序可能没有以适当的权限运行。您应该尝试将日志写入不同的(限制较少的)位置。如果您需要写入 system32,请确保您的服务以管理员权限运行。

于 2012-12-13T19:00:26.193 回答