等到我的线程完成

本文关键字:线程 我的 | 更新日期: 2023-09-27 18:29:35

public delegate void FileEventHandler(string file);
public event FileEventHandler fileEvent;
public void getAllFiles(string path)
{
    foreach (string item in Directory.GetDirectories(path))
    {
        try
        {
            getAllFiles(item);
        }
        catch (Exception)
        { }
    }
    foreach (string str in Directory.GetFiles(path, "*.pcap"))
    {
        // process my file and if this file format OK raised event to UI and add the file to my listbox
        FileChecker fileChecker = new FileChecker();
        string result = fileChecker.checkFIle(str);
        if (result != null)
            fileEvent(result);
    }
}
private void btnAddDirInput_Click(object sender, EventArgs e)
{
        ThreadStart ts = delegate { getAllFiles(pathToSearch); };
        Thread thread = new Thread(ts);
        thread.IsBackground = true;
        thread.Start();
}

我想等到线程完成其工作,然后更新我的 UI

等到我的线程完成

您可以使用任务并行库而不是显式任务以及异步语言功能来非常轻松地执行此操作:

private async void btnAddDirInput_Click(object sender, EventArgs e)
{
    await Task.Run(() => getAllFiles(pathToSearch));
    lable1.Text = "all done!";
}

为什么不使用任务?

await Task.Run(() => getAllFiles(pathToSearch));

您的方法将在单独的线程上运行,从而释放主线程以保持 UI 响应。任务完成后,控件将返回到 UI 线程。

编辑:不要忘记将您的button_click方法标记为async void