1

编辑 8/8/2012: 我对我正在使用的代码进行了一些重大更改,并希望对我遇到的最后一个问题提供一些新的帮助。我将重写这个问题的大部分内容。

我有一个小程序,它递归地遍历目标目录下的每个文件和文件夹,检查特定字符的名称。它工作得很好,但我正在寻找有关如何使特定方法更快工作的帮助。

这是我目前正在使用的代码。这只是启动所有方法的几行代码:

if(getFullList(initialPathTB.Text))
            SearchFolder();  

这些是您需要查看的两种方法:

private void SearchFolder()
{
    int      newRow;
    int      numItems = 0;

    numItems = itemsMaster.Length;

    for (int x = 0; x < numItems; x++)
    {
        if (hasIllegalChars(itemsMaster[x]) == true)
        {
            newRow = dataGridView1.Rows.Add();
            dataGridView1.Rows[newRow].Cells[0].Value = itemsMaster[x];
            filesFound++;
        }
    }
}

private bool getFullList(string folderPath)
{
    try
    {
        if (checkBox17.Checked)
            itemsMaster = Directory.GetFileSystemEntries(folderPath, "*", SearchOption.AllDirectories);
        else
            itemsMaster = Directory.GetFileSystemEntries(folderPath, "*", SearchOption.TopDirectoryOnly);
        return true;
    }
    catch (UnauthorizedAccessException e)
    {
        if(folderPath[folderPath.Length - 1] != '\\')
            folderPath += @"\";
        if (e.Message == "Access to the path '" + folderPath + "' is denied.")
        {
            MessageBox.Show("You do not have read permission for the following directory:\n\n\t" + folderPath + "\n\nPlease select another folder or log in as a user with read access to this folder.", "Access Denied", MessageBoxButtons.OK, MessageBoxIcon.Error);
            folderPath = folderPath.Substring(0, folderPath.Length - 1);
        }
        else
        {
            if (accessDenied == null)
                accessDenied = new StringBuilder("");
            accessDenied.AppendLine(e.Message.Substring(20, e.Message.Length - 32));
        }
        return false;
    }
}

initialPathTB.Text填充有“F:\COMMON\Administration”之类的内容。

这是我的问题。 当传递给的顶层folderPath是用户没有读取权限的顶层时,一切正常。当顶级目录和所有从属目录都是用户具有读取权限的文件夹时,一切都会再次正常工作。问题在于用户对顶层具有读取权限但对更深层次的某些子文件夹没有读取权限的目录。这就是为什么getFullList()是布尔值;如果有任何 UnauthorizedAccessExceptions 则itemsMaster保持为空并SearchFolder()失败numItems = itemsMaster.Length;

我想要的是填充itemsMaster其中的每个项目,folderPath并简单地跳过用户没有读取权限的项目,但我不知道如何在不递归爬取和检查每个目录的情况下做到这一点。

这段代码比我的旧方法运行得快得多,所以我不想完全放弃它。有什么方法可以使该Directory.GetFileSystemEntries()方法做我想要的吗?

4

2 回答 2

2
Directory.GetFileSystemEntries(folderPath, "*", SearchOption.AllDirectories).Length

或其他选项(使用此选项,请记住其中的前 3-5 个元素fullstring将是您应该删除的输出中的垃圾文本):

Process process = new Process();
List<string> fullstring = new List<string>();

process.StartInfo.FileName = "cmd.exe";
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.UseShellExecute = false;
process.OutputDataReceived += (sender, args2) => fullstring.Add(args2.Data);

process.Start();

process.StandardInput.WriteLine(@"dir /b /s c:\temp | find """" /v");
process.BeginOutputReadLine();

process.WaitForExit(10000); //or whatever is appropriate time

process.Close();

如果您想更好地跟踪错误,请进行以下更改:

全局声明List<string> fullstring = new List<string>();,然后更改如下事件处理程序OutputDataReceived

    process.OutputDataReceived += new DataReceivedEventHandler(process_OutputDataReceived);
}

static void process_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
    try
    {
        fullstring.Add(e.Data);
    }
    catch (Exception ex)
    {
        Debug.WriteLine(ex.ToString());
        //log exception
    }
}
于 2012-07-19T20:57:36.970 回答
1

您写道:“我希望进度条实际指示程序在项目列表中的距离,因此我需要一些项目来将 ProgressBar.Maximum 属性设置为。”

这是一种特定的愿望,在给定的情况下,我不确定它是否值得。如果你的 ProgressBar 是(比如说)800 px 宽,1 个百分点就是 0.125px 宽。对于“超过 10 万个项目”的列表——让我们将其设为至少 100,000 个——您必须处理 8,000 个项目才能移动条形以移动单个像素。您的程序处理 8,000 个项目需要多长时间?这将帮助您了解您正在向用户提供什么样的实际反馈。如果花费的时间太长,即使它正在工作,它也可能看起来像是挂了。

如果您希望提供良好的用户反馈,我建议您将 ProgressBar 的样式设置为 Marquee 并提供“正在检查文件#x ”文本指示器。

于 2012-07-19T21:32:46.577 回答