gpt4 book ai didi

c# - 文件被锁定时避免崩溃?

转载 作者:太空狗 更新时间:2023-10-30 00:33:16 25 4
gpt4 key购买 nike

来自评论的决议:
应用程序崩溃是由另一个问题引起的

我正在从 2 个不同的应用程序读取/写入一个文件,当文件被读取或写入时,它总是被应用程序 A 或 B 锁定,它们都使用 FileShare.None.

我的问题是,即使将 reader 包装在 try/catch 周围,它仍然会使应用程序在 using 行崩溃并出现 IOException(不会发生在 writer 身上)。

我也将 catch 设置为 catch (IOException ...,我相信这除了使它更具可读性之外没有任何区别。

当文件被锁定时忽略并继续尝试直到文件可用的正确方法是什么?

while (true)
{
try
{
using (FileStream stream = new FileStream("test_file.dat", FileMode.Open, FileAccess.Read, FileShare.None))
{
using (TextReader reader = new StreamReader(stream))
{
// bla bla bla does not matter
}
}
}
catch
{
// bla bla bla does not matter again
}
Thread.Sleep(500);
}

private bool WriteData(string data)
{
try
{
using (FileStream stream = new FileStream("test_file.dat", FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
{
stream.SetLength(0);
using (TextWriter writer = new StreamWriter(stream))
{
writer.Write(data);
}
}
return true;
}
catch
{
return false;
}
}

请注意,当文件被用于读取或写入的任何过程时,我不会将共享权(作者和读者都使用 FileShare.None)授予任何人,所以基本上我正在处理异常,直到文件可用,这是不工作的。

最佳答案

这是我们为此目的使用的代码。

/// <summary>
/// Executes the specified action. If the action results in a file sharing violation exception, the action will be
/// repeatedly retried after a short delay (which increases after every failed attempt).
/// </summary>
/// <param name="action">The action to be attempted and possibly retried.</param>
/// <param name="maximum">Maximum amount of time to keep retrying for. When expired, any sharing violation
/// exception will propagate to the caller of this method. Use null to retry indefinitely.</param>
/// <param name="onSharingVio">Action to execute when a sharing violation does occur (is called before the waiting).</param>
public static void WaitSharingVio(Action action, TimeSpan? maximum = null, Action onSharingVio = null)
{
WaitSharingVio<bool>(() => { action(); return true; }, maximum, onSharingVio);
}

/// <summary>
/// Executes the specified function. If the function results in a file sharing violation exception, the function will be
/// repeatedly retried after a short delay (which increases after every failed attempt).
/// </summary>
/// <param name="func">The function to be attempted and possibly retried.</param>
/// <param name="maximum">Maximum amount of time to keep retrying for. When expired, any sharing violation
/// exception will propagate to the caller of this method. Use null to retry indefinitely.</param>
/// <param name="onSharingVio">Action to execute when a sharing violation does occur (is called before the waiting).</param>
public static T WaitSharingVio<T>(Func<T> func, TimeSpan? maximum = null, Action onSharingVio = null)
{
var started = DateTime.UtcNow;
int sleep = 279;
while (true)
{
try
{
return func();
}
catch (IOException ex)
{
int hResult = 0;
try { hResult = (int) ex.GetType().GetProperty("HResult", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(ex, null); }
catch { }
if (hResult != -2147024864) // 0x80070020 ERROR_SHARING_VIOLATION
throw;
if (onSharingVio != null)
onSharingVio();
}

if (maximum != null)
{
int leftMs = (int) (maximum.Value - (DateTime.UtcNow - started)).TotalMilliseconds;
if (sleep > leftMs)
{
Thread.Sleep(leftMs);
return func(); // or throw the sharing vio exception
}
}

Thread.Sleep(sleep);
sleep = Math.Min((sleep * 3) >> 1, 10000);
}
}

使用示例:

Utilities.WaitSharingVio(
action: () =>
{
using (var f = File.Open(file, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
{
// ... blah, process the file
}
},
onSharingVio: () =>
{
Console.WriteLine("Sharing violation. Trying again soon...");
}
);

关于c# - 文件被锁定时避免崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12881254/

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