C#文件夹,子文件夹和文件未出现在C#windows应用程序目录路径比较代码

时间:2017-09-13 14:19:03

标签: c# windows-applications subdirectory

对于此代码,我希望用户基本上输入两个目录路径,并在文件夹或文件存在任何差异时进行比较,直到C#Windows应用程序中的特定文件夹或文件。我现在的代码只进入了直接文件夹,只列出了直接文件,如果它们在直接文件夹中。

private void btnCompare_Click(object sender, EventArgs e)
{
    // Clear previous results.
    dgvFiles.Rows.Clear();

    // Get sorted lists of files in the directories.
    string dir1 = txtDir1.Text;
    if (!dir1.EndsWith("\\")) dir1 += "\\";
    string[] file_names1 = Directory.GetFileSystemEntries(dir1);
    for (int i = 0; i < file_names1.Length; i++)
    {
        file_names1[i] = file_names1[i].Replace(dir1, "*.*");

    }
    Array.Sort(file_names1);

    string dir2 = txtDir2.Text;
    if (!dir2.EndsWith("\\")) dir2 += "\\";
    string[] file_names2 = Directory.GetFileSystemEntries(dir2);
    for (int i = 0; i < file_names2.Length; i++)
    {
        file_names2[i] = file_names2[i].Replace(dir2, "*.*");
    }
    Array.Sort(file_names2);

    // Compare.
    int i1 = 0, i2 = 0;
    while ((i1 < file_names1.Length) && (i2 < file_names2.Length))
    {
        if (file_names1[i1] == file_names2[i2])
        {
            // They match. Display them both.
            dgvFiles.Rows.Add(new Object[] { file_names1[i1], file_names2[i2] });
            i1++;
            i2++;
        }
        else if (file_names1[i1].CompareTo(file_names2[i2]) < 0)
        {
            // Display the directory 1 file.
            dgvFiles.Rows.Add(new Object[] { file_names1[i1], null });
            i1++;
        }
        else
        {
            // Display the directory 2 file.
            dgvFiles.Rows.Add(new Object[] { null, file_names2[i2] });
            i2++;
        }
    }

任何帮助将不胜感激。非常感谢你!

1 个答案:

答案 0 :(得分:1)

您可以使用GetFileSystemEntries的重载来获取更多}字符串和SearchPattern作为参数。这将为您提供包含文件的子文件夹:

SearchOption