gpt4 book ai didi

c# - 不确定在哪里捕获异常、验证和消息 'file is still processing'

转载 作者:太空宇宙 更新时间:2023-11-03 16:15:27 25 4
gpt4 key购买 nike

使用 C# 构建了一个 Windows 服务来处理进入服务器的 .tif 文件。该服务工作正常,但抛出异常,然后继续根据需要处理文件。问题是我收到此错误:

System.IO.IOException: The process cannot access the file because it is being used by another process. at System.IO._Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO._Error.WinIOError() at System.IO.File.Move(String sourceFileName, String destFileName)

我相信我需要捕获异常、验证错误并显示一条消息“文件仍在处理中”但是,我不确定在哪里?我的 timer1 设置为 10 秒,这应该有足够的时间来处理文件。

我的代码:

protected void timer1Elapsed(object sender, EventArgs e)
{
try
{
if (mainProg == null)
{
mainProg = new ProcessFilesFromSource(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
}
mainProg.ScanArchiverMain();
}
catch (Exception ex)
{
EventLog.WriteEntry("ScanArchiver Error", ex.ToString());
EventLog.WriteEntry("ScanArchiver Online");
}
}
protected override void OnStop()
{
EventLog.WriteEntry("ScanArchiver Offline");
timer1.Enabled = false;
timer1.Dispose();
}
}

最佳答案

在处理时停止定时器,并在完成后重新启动它。

另请查看 BackgroundWorker作为 Timer 的替代品。

protected void timer1Elapsed(object sender, EventArgs e)
{
timer1.Stop();
try
{

if (mainProg == null)
{
mainProg = new ProcessFilesFromSource(System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
}
mainProg.ScanArchiverMain();
}
catch (Exception ex)
{
EventLog.WriteEntry("ScanArchiver Error", ex.ToString());
EventLog.WriteEntry("ScanArchiver Online");
}
timer1.Start();
}

关于c# - 不确定在哪里捕获异常、验证和消息 'file is still processing',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15930426/

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