递归搜索方法需要在第二次运行时,需要两倍的时间

时间:2011-10-12 07:23:45

标签: c# database winforms

我有一点问题。我编写了一个winforms应用程序,它递归地搜索指定文件夹及其子文件夹中的文件。当我第一次运行应用程序时,该方法需要10分钟才能找到100'000个文件,但是当我第二次执行搜索方法时(没有关闭并重新打开Windows窗体),它需要两倍的时间。为什么需要花费两倍的时间?

编辑:首次搜索:10分钟,第二次运行:20分钟,第三次运行40分钟......

这是我的搜索方法:

        public void dirsearch(string sdir)
        {
        this.Invoke((MethodInvoker)delegate
        {
            progressBar.Refresh();
            dataGridView.Refresh();
            // runs on UI thread
        });
            foreach (string d in Directory.GetDirectories(sdir))
            {
                try
                {
                    foreach (string f in Directory.GetFiles(d))
                    {
                        if (Regex.IsMatch(f, searchPattern, RegexOptions.IgnoreCase))
                        {
                            FileInfo file = new FileInfo(f);
                            string fileName = file.Name;
                            string filePath = f;
                            string user = File.GetAccessControl(filePath).GetOwner(typeof(System.Security.Principal.NTAccount)).ToString();
                            properties.Add(new FileProperties(file.Name, f, file.Length, file.LastWriteTime));
                            //dataGridView.Refresh();
                            //progressBar.Refresh();
                        tryagainpoint:
                            cmd.CommandText = String.Format("insert into Attribute (Dateiname, Dateipfad, Dateierstellungsdatum, Dateiendung, Grösse, Ersteller, Letztes_mal_bearbeitet, FS) values ('{0}', '{1}', '{2}', '{3}', {4}, '{5}', '{6}', {7})", file.Name, f, file.CreationTime, file.Extension, file.Length, user, file.LastWriteTime, ID);
                            try
                            {
                                cmd.ExecuteNonQuery();
                            }
                            catch (OleDbException)
                            {
                                if (file.Name.Contains(@"'"))
                                {
                                    fileName = file.Name.Replace(@"'", @"''");
                                    filePath = f.Replace(@"'", @"''");
                                    goto tryagainpoint;
                                }
                            }
                            finally
                            {
                                file = null;
                            }
                        }


                    }

                    dirsearch(d);
                    progressBar.MarqueeAnimationSpeed = 0;
                }

                catch (Exception exc) //Schreibt geworfene Exception in logfile.txt
                {
                    WriteExceptionIntoTxtFile(exc);
                    continue;
                }
        }
    }

1 个答案:

答案 0 :(得分:1)

您是否清除了两个调用之间的集合“属性”。如果没有,该集合将在第二次调用该函数开始时包含100,000个条目,并在结尾处包含200,000个条目。使用分组时,数据网格存在性能问题!

BTW:如果你没有在每个找到的文件后刷新datagrid和progressbar,代码会更快!