C# 遞歸查找樹狀目次完成辦法。本站提示廣大學習愛好者:(C# 遞歸查找樹狀目次完成辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C# 遞歸查找樹狀目次完成辦法正文
1.遞歸查找樹狀目次
public partial class Form1 : Form
{
string path = @"F:\進修文件";//遞歸查找樹狀目次
public Form1()
{遞歸查找樹狀目次
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
LoadTree(path);
}
public void LoadTree(string path, TreeNode node=null)
{
string[] dirs = Directory.GetDirectories(path);//獲得子目次
foreach (string dir in dirs)
{
TreeNode node1 = new TreeNode(Path.GetFileName(dir));
//TreeNode node1 = new TreeNode(dir);//文件一切途徑
if (node == null)
{
treeView1.Nodes.Add(node1);
}
else
{
node.Nodes.Add(node1);
}
if (Directory.GetDirectories(dir).Length > 0)
{
LoadTree(dir, node1);
}
}
}
}
}