gpt4 book ai didi

c# - Windows 服务无法创建文本文件

转载 作者:行者123 更新时间:2023-11-30 13:17:12 24 4
gpt4 key购买 nike

好的,这是我的 OnStart 方法的代码

File.CreateText("test.txt");
StreamWriter write = File.AppendText("test.txt");
write.WriteLine("Hello world, the service has started");
write.Flush();
write.Close();

我已成功安装该服务。但是,当我开始时,我收到消息说该服务已启动然后停止。当我检查事件查看器时,它给了我这个

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

好的,这是怎么回事。我认为这不是权限问题,因为 ProcessInstaller 已设置为 LocalSystem。

最佳答案

您不需要使用第一个 File.CreateText 语句。这会在未关闭的文件上创建一个流写入器。

您的 File.AppendText 尝试在同一个文件上创建一个新的 StreamWriter,因此您会收到 File in use 错误。

此外,正如 MSDN 所说,如果您的文件不存在,将创建该文件。

If the file specified by path does not exist, it is created. If the file does exist, write operations to the StreamWriter append text to the file

关于c# - Windows 服务无法创建文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14253815/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com