如何将树视图中的所有文件夹添加为具有嵌套的节点

发布于 2024-10-29 05:39:30 字数 170 浏览 0 评论 0原文

我在一个文件夹下有一组目录。目录结构不是 100% 一致(例如,在 A 下可能有文件夹内的文件夹,但在 B 下没有)。

我需要将树视图中的所有文件夹绑定到适当的嵌套(例如 C:\a\b 嵌套在 C:\a 下)。

有没有一种简单的方法,甚至免费的树视图,可以让我做到这一点?

谢谢

I have a set of directories under a folder. The directory structure isn't 100% consistent (e.g. under A there maybe folders within folders but not under B).

I need to bind all the folders in a treeview with appropriate nesting (e.g. C:\a\b nests under C:\a).

Is there an easy way, or even free treeview, that would let me do this?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮酒 2024-11-05 05:39:30

类似于:

private void Form_Load(object sender, EventArgs e)
{
    treeView.Nodes.Add(GetDirectoryNodes(@"C:\TEST"));
}

private static TreeNode GetDirectoryNodes(string path)
{
    var node = new TreeNode(path);

    var subDirs = Directory.GetDirectories(path).Select(d => GetDirectoryNodes(d)).ToArray();
    node.Nodes.AddRange(subDirs);

    return node;
}

只需在递归方法中使用 System.IO 中的 Directory.GetDirectories() 来构建节点层次结构,并将其放入 TreeView 中。

编辑 - 根据注释添加排除机制(并将表达式转换为 Linq,在本例中更清晰):

private void Form_Load(object sender, EventArgs e)
{
    treeView.Nodes.Add(GetDirectoryNodes(@"C:\TEST", new string[] { @"C:\TeST\C", @"C:\TEST\E" }));
}

private static TreeNode GetDirectoryNodes(string path, string[] exclusions)
{
    var node = new TreeNode(Path.GetFileName(path));

    var subDirs = (from d in Directory.GetDirectories(path)
                   where !exclusions.Contains(d,StringComparer.CurrentCultureIgnoreCase)
                   select GetDirectoryNodes(d,exclusions)).ToArray();

    node.Nodes.AddRange(subDirs);
    return node;
}

Something like:

private void Form_Load(object sender, EventArgs e)
{
    treeView.Nodes.Add(GetDirectoryNodes(@"C:\TEST"));
}

private static TreeNode GetDirectoryNodes(string path)
{
    var node = new TreeNode(path);

    var subDirs = Directory.GetDirectories(path).Select(d => GetDirectoryNodes(d)).ToArray();
    node.Nodes.AddRange(subDirs);

    return node;
}

Just uses Directory.GetDirectories() from System.IO in a recursive method to build the node hierarchy, and drop this into the TreeView.

EDIT - adding exclusion mechanism as per comments (and converted expression to Linq, which is clearer in this case):

private void Form_Load(object sender, EventArgs e)
{
    treeView.Nodes.Add(GetDirectoryNodes(@"C:\TEST", new string[] { @"C:\TeST\C", @"C:\TEST\E" }));
}

private static TreeNode GetDirectoryNodes(string path, string[] exclusions)
{
    var node = new TreeNode(Path.GetFileName(path));

    var subDirs = (from d in Directory.GetDirectories(path)
                   where !exclusions.Contains(d,StringComparer.CurrentCultureIgnoreCase)
                   select GetDirectoryNodes(d,exclusions)).ToArray();

    node.Nodes.AddRange(subDirs);
    return node;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文