C#WinForm treeview 簡單檔案夾管理器 查看檔案夾下的檔案,子檔案下的檔案

來源:互聯網
上載者:User

標籤:

1 查看的檔案夾中的內容

 

2 UI

 

3 代碼

 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.IO; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks;10 using System.Windows.Forms;11 12 namespace WindowsFormsApplication213 {14     public partial class Form1 : Form15     {16         public Form1()17         {18             InitializeComponent();19         }20 21         private void Form1_Load(object sender, EventArgs e)22         {23             string path = @"L:\用程式建立的檔案夾";24 25             //用到了函數的遞迴26             ShowEveryFile(path, treeView1.Nodes);   27         }28 29         private void ShowEveryFile(string path, TreeNodeCollection nodes)30         {31             //dires儲存的是檔案夾的絕對路徑32             string[] dires = Directory.GetDirectories(path);33             for (int i = 0; i < dires.Length; i++)34             {35                                        //檔案夾的名字36                 var newNodes= nodes.Add(Path.GetFileName(dires[i]));37                 //函數的遞迴,出現了                          38                 ShowEveryFile(dires[i], newNodes.Nodes);39             }40 41             //在函數套用到最深處時,準備一層一層地出來的時候會調用42             string[] files = Directory.GetFiles(path);43             for (int i = 0; i < files.Length; i++)44             {45                 nodes.Add(Path.GetFileName(files[i]));46             }47         }48     }49 }

 

4 效果

 

 

                   查看迭代函數的運行方法
            
1、在 調用 需要進行迭代的函數 的程式碼 設定斷點
2、F5 運行到斷點處
3、F11 一行代碼,一行的運行。
4、觀察局部變數視窗並記錄相關參數。

  迭代函數是一層一層深入,深入到最裡層之後,在逐層向外。

C#WinForm treeview 簡單檔案夾管理器 查看檔案夾下的檔案,子檔案下的檔案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.