gpt4 book ai didi

C# 进程无法访问文件 'XYZ',因为它正被另一个进程使用

转载 作者:行者123 更新时间:2023-11-30 20:34:36 26 4
gpt4 key购买 nike

最近几天我一直在与这个问题作斗争,当我在我的开发机器上时它工作正常,但在客户端上它显示这个错误。

现在这是我的代码,它似乎显示了错误,所以任何帮助或指导都会很棒,提前谢谢你。

 private void document()
{
StreamWriter sWrite = new StreamWriter("C:\\Demo\\index.html");
//LOTS OF SWRITE LINES HERE
sWrite.Close();
System.Diagnostics.Process.Start("C:\\Demo\\index.html");
}

所以我不知道如果我运行此方法两次,它总是告诉我文件已被另一个进程使用。

最佳答案

其中一些取决于确切的行为。这可能有几个原因:例如,可能是由于异常。以下代码将产生您所描述的异常。

for (int i = 0; i < 10; i++)
{
const string path = @"[path].xml";

try
{
// After the first exception, this call will start throwing
// an exception to the effect that the file is in use
StreamWriter sWrite = new StreamWriter(path, true);

// The first time I run this exception will be raised
throw new Exception();

// Close will never get called and now I'll get an exception saying that the file is still in use
// when I try to open it again. That's because the file lock was never released due to the exception
sWrite.Close();
}
catch (Exception e)
{

}
//LOTS OF SWRITE LINES HERE

Process.Start(path);
}

“使用” block 将解决这个问题,因为它等同于:

try
{
//...
}
finally
{
stream.Dispose();
}

在您的代码的上下文中,如果您正在编写一大堆行,那么考虑是否(以及何时)您想要在某个时刻调用 Flush 实际上确实是有意义的。问题是写入是否应该是“全部或无”——即如果发生异常,您是否仍要写入前几行?如果没有,只需使用“using” block ——它会在“Dispose”的末尾调用一次“Flush”。否则,您可以提前调用“Flush”。例如:

using (StreamWriter sw = new StreamWriter(...))
{
sw.WriteLine("your content");
// A bunch of writes
// Commit everything we've written so far to disc
// ONLY do this if you could stop writing at this point and have the file be in a valid state.
sw.Flush();

sw.WriteLine("more content");
// More writes
} // Now the using calls Dispose(), which calls Flush() again

如果您在多个线程上执行此操作(尤其是在执行大量写入操作时),则可能会出现一个很大的错误。如果一个线程调用您的方法并开始写入文件,然后另一个线程也调用它并尝试开始写入文件,则第二个线程的调用将失败,因为第一个线程仍在使用该文件。如果是这种情况,您将需要使用某种锁来确保线程“轮流”写入文件。

关于C# 进程无法访问文件 'XYZ',因为它正被另一个进程使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39003831/

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